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