* VARS<sub>i</sub> is lexicographically less or equal than than VARS<sub>i+1</sub>
*
* @param VARS collection of vectors of variables
*/
public static Constraint lex_chain_less_eq(IntVar[]... VARS) {
return new Constraint("LexChain(<=)", new PropLexChain(VARS, false));
}