this repo has no description
at develop 390 B view raw
1include "tree.mzn"; 2 3predicate fzn_dsteiner(int: N, int: E, array[int] of int: from, array[int] of int: to, array[int] of int: w, 4 var int: r, array[int] of var bool: ns, array[int] of var bool: es, var int: K) = 5 dtree(N,E,from,to,r,ns,es) /\ 6 K = sum(e in 1..E)(es[e]*w[e]); 7 8%-----------------------------------------------------------------------------%