Package solver.constraints.nary.element

Examples of solver.constraints.nary.element.PropElementV_fast


     */
    public static Constraint element(IntVar VALUE, IntVar[] TABLE, IntVar INDEX, int OFFSET) {
        // uses two propagator to perform a fix point
        return new Constraint(
                "Element",
                new PropElementV_fast(VALUE, TABLE, INDEX, OFFSET, true),
                new PropElementV_fast(VALUE, TABLE, INDEX, OFFSET, true));
    }
View Full Code Here

TOP

Related Classes of solver.constraints.nary.element.PropElementV_fast

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.