Package solver.constraints.nary

Examples of solver.constraints.nary.PropSort


     * @param VARS       an array of variables
     * @param SORTEDVARS an array of variables sorted in increasing order
     * @return a sort constraint
     */
    public static Constraint sort(IntVar[] VARS, IntVar[] SORTEDVARS) {
        return new Constraint("Sort", new PropSort(VARS, SORTEDVARS));
    }
View Full Code Here

TOP

Related Classes of solver.constraints.nary.PropSort

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.