Package solver.constraints.nary.lex

Examples of solver.constraints.nary.lex.PropLex


     *
     * @param VARS1 vector of variables
     * @param VARS2 vector of variables
     */
    public static Constraint lex_less(IntVar[] VARS1, IntVar[] VARS2) {
        return new Constraint("Lex(<)", new PropLex(VARS1, VARS2, true));
    }
View Full Code Here


     *
     * @param VARS1 vector of variables
     * @param VARS2 vector of variables
     */
    public static Constraint lex_less_eq(IntVar[] VARS1, IntVar[] VARS2) {
        return new Constraint("Lex(<=)", new PropLex(VARS1, VARS2, false));
    }
View Full Code Here

TOP

Related Classes of solver.constraints.nary.lex.PropLex

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.