Examples of GeometricalRestartStrategy


Examples of solver.search.restart.GeometricalRestartStrategy

     * @param restartLimit         restart limits (limit of number of restarts)
     */
    public static void geometrical(Solver solver, int scaleFactor, double geometricalFactor,
                                   ICounter restartStrategyLimit, int restartLimit) {
        solver.plugMonitor(new RestartManager(
                new GeometricalRestartStrategy(scaleFactor, geometricalFactor),
                restartStrategyLimit, solver.getSearchLoop(), restartLimit
        ));
    }
View Full Code Here

Examples of solver.search.restart.GeometricalRestartStrategy

        tmpValueDeductions = new HashSet<Deduction>(16);


    aSolver.plugMonitor(this);
        notFrozen = new BitSet(16);
        geo4cluster = new GeometricalRestartStrategy(1, 1.2);
        mSolver.plugMonitor(this);
    }
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.