blob: 826bdaaeca162306821b32718f04dd084ae6c0d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _HG_INTERSECT_H_
#define _HG_INTERSECT_H_
#include <vector>
#include "lattice.h"
class Hypergraph;
struct HG {
static bool Intersect(const Lattice& target, Hypergraph* hg);
};
#endif
|