// // A static variable ordering heuristic // May be used to select only some of the variables, // i.e. the "decision" variables (as in jssp) // import choco.integer.*; import choco.integer.search.*; public class VarOrder extends AbstractIntVarSelector { protected IntDomainVar[] vars; public VarOrder(IntDomainVar[] vars){ this.vars = vars; } public IntDomainVar selectIntVar(){ for (int i=0;i