Package solver.constraints.nary.among

Examples of solver.constraints.nary.among.PropAmongGAC_GoodImpl


     * @param VALUES set of values
     */
    public static Constraint among(IntVar NVAR, IntVar[] VARS, int[] VALUES) {
        int[] values = new TIntHashSet(VALUES).toArray(); // remove double occurrences
        Arrays.sort(values);                              // sort
        return new Constraint("Among", new PropAmongGAC_GoodImpl(ArrayUtils.append(VARS, new IntVar[]{NVAR}), values));
    }
View Full Code Here

TOP

Related Classes of solver.constraints.nary.among.PropAmongGAC_GoodImpl

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.