Package jsprit.core.algorithm

Examples of jsprit.core.algorithm.VariablePlusFixedSolutionCostCalculatorFactory


    public SolutionAnalyser(VehicleRoutingProblem vrp, VehicleRoutingProblemSolution solution, DistanceCalculator distanceCalculator) {
        this.vrp = vrp;
        this.solution = solution;
        this.distanceCalculator = distanceCalculator;
        initialise();
        this.solutionCostCalculator = new VariablePlusFixedSolutionCostCalculatorFactory(stateManager).createCalculator();
        refreshStates();
    }
View Full Code Here

TOP

Related Classes of jsprit.core.algorithm.VariablePlusFixedSolutionCostCalculatorFactory

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.