* (which counts from 1 to n instead of from 0 to n-1)
* @return a tree constraint
*/
public static Constraint tree(IntVar[] SUCCS, IntVar NBTREES, int OFFSET) {
return new Constraint("tree",
new PropAntiArborescences(SUCCS, OFFSET, false),
new PropKLoops(SUCCS, OFFSET, NBTREES)
);
}