this repo has no description
1predicate fzn_subgraph_reif(int: N, int: E, array[int] of int: from, array[int] of int: to,
2 array[int] of var bool: ns, array[int] of var bool: es,
3 var bool: b) =
4 b <-> forall(e in 1..E) (
5 (es[e] -> ns[from[e]]) /\ (es[e] -> ns[to[e]])
6 );
7
8%-----------------------------------------------------------------------------%