Examples of SetStrategy


Examples of solver.search.strategy.strategy.SetStrategy

     * @param enforceFirst branching order true = enforce first; false = remove first
   * @param sets         SetVar array to branch on
     * @return a strategy to instantiate sets
     */
    public static SetStrategy custom(VariableSelector<SetVar> varS, SetValueSelector valS, boolean enforceFirst, SetVar... sets) {
        return new SetStrategy(sets, varS, valS, enforceFirst);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.