Package solver.constraints.nary.min_max

Examples of solver.constraints.nary.min_max.PropBoolMin


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

TOP

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

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.