Package solver.constraints.nary.min_max

Examples of solver.constraints.nary.min_max.PropBoolMax


     *
     * @param MAX  a boolean variable
     * @param VARS a vector of boolean variables
     */
    public static Constraint maximum(BoolVar MAX, BoolVar[] VARS) {
        return new Constraint("MinOverBools", new PropBoolMax(VARS, MAX));
    }
View Full Code Here

TOP

Related Classes of solver.constraints.nary.min_max.PropBoolMax

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.