Package solver.variables

Examples of solver.variables.SetVar


    @Test(groups = "1s")
    public void test82() {
        Solver solver = new Solver("Choco");
        IntVar I = VF.enumerated("I", 1, 5, solver);
        SetVar T = VF.set("T", 1, 3, solver);

        solver.post(SCF.member(I, T));

        Solver copy = solver.duplicateModel();
View Full Code Here

TOP

Related Classes of solver.variables.SetVar

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.