Package jsprit.core.algorithm.SearchStrategy

Examples of jsprit.core.algorithm.SearchStrategy.DiscoveredSolution


        logger.info("iterations start");
    for(int i=0;i< maxIterations;i++){
      iterationStarts(i+1,problem,solutions);
      counter.incCounter();
      SearchStrategy strategy = searchStrategyManager.getRandomStrategy();
      DiscoveredSolution discoveredSolution = strategy.run(problem, solutions);
            memorizeIfBestEver(discoveredSolution);
      selectedStrategy(strategy.getName(),problem, solutions);
            if(terminationManager.isPrematureBreak(discoveredSolution)){
        logger.info("premature algorithm termination at iteration "+ (i+1));
        noIterationsThisAlgoIsRunning = (i+1);
View Full Code Here

TOP

Related Classes of jsprit.core.algorithm.SearchStrategy.DiscoveredSolution

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.