this repo has no description
at develop 335 B view raw
1predicate fzn_subgraph(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 forall(e in 1..E) ( 4 (es[e] -> ns[from[e]]) /\ (es[e] -> ns[to[e]]) 5 ); 6 7%-----------------------------------------------------------------------------%