Package solver.constraints.unary

Examples of solver.constraints.unary.Member


     *
     * @param VAR   an integer variable
     * @param TABLE an array of values
     */
    public static Constraint member(IntVar VAR, int[] TABLE) {
        return new Member(VAR, TABLE);
    }
View Full Code Here


     * @param VAR an integer variable
     * @param LB  the lower bound of the interval
     * @param UB  the upper bound of the interval
     */
    public static Constraint member(IntVar VAR, int LB, int UB) {
        return new Member(VAR, LB, UB);
    }
View Full Code Here

TOP

Related Classes of solver.constraints.unary.Member

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.