mirror of
https://github.com/graphhopper/jsprit.git
synced 2020-01-24 07:45:05 +01:00
add utility to add core constraints from everywhere
This commit is contained in:
parent
76902b4c73
commit
acb82f6646
2 changed files with 9 additions and 1 deletions
|
|
@ -22,7 +22,12 @@ import com.graphhopper.jsprit.core.algorithm.state.*;
|
||||||
import com.graphhopper.jsprit.core.problem.VehicleRoutingProblem;
|
import com.graphhopper.jsprit.core.problem.VehicleRoutingProblem;
|
||||||
import com.graphhopper.jsprit.core.problem.constraint.ConstraintManager;
|
import com.graphhopper.jsprit.core.problem.constraint.ConstraintManager;
|
||||||
import com.graphhopper.jsprit.core.problem.constraint.SwitchNotFeasible;
|
import com.graphhopper.jsprit.core.problem.constraint.SwitchNotFeasible;
|
||||||
|
import com.graphhopper.jsprit.core.problem.job.Job;
|
||||||
|
import com.graphhopper.jsprit.core.problem.solution.SolutionCostCalculator;
|
||||||
|
import com.graphhopper.jsprit.core.problem.solution.VehicleRoutingProblemSolution;
|
||||||
import com.graphhopper.jsprit.core.problem.solution.route.VehicleRoute;
|
import com.graphhopper.jsprit.core.problem.solution.route.VehicleRoute;
|
||||||
|
import com.graphhopper.jsprit.core.problem.solution.route.activity.BreakActivity;
|
||||||
|
import com.graphhopper.jsprit.core.problem.solution.route.activity.TourActivity;
|
||||||
import com.graphhopper.jsprit.core.problem.vehicle.Vehicle;
|
import com.graphhopper.jsprit.core.problem.vehicle.Vehicle;
|
||||||
import com.graphhopper.jsprit.core.problem.vehicle.VehicleTypeKey;
|
import com.graphhopper.jsprit.core.problem.vehicle.VehicleTypeKey;
|
||||||
import com.graphhopper.jsprit.core.util.ActivityTimeTracker;
|
import com.graphhopper.jsprit.core.util.ActivityTimeTracker;
|
||||||
|
|
@ -72,4 +77,6 @@ public class AlgorithmUtil {
|
||||||
stateManager.addStateUpdater(new UpdateVariableCosts(vrp.getActivityCosts(), vrp.getTransportCosts(), stateManager));
|
stateManager.addStateUpdater(new UpdateVariableCosts(vrp.getActivityCosts(), vrp.getTransportCosts(), stateManager));
|
||||||
stateManager.addStateUpdater(new UpdateFutureWaitingTimes(stateManager, vrp.getTransportCosts()));
|
stateManager.addStateUpdater(new UpdateFutureWaitingTimes(stateManager, vrp.getTransportCosts()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -20,6 +20,7 @@ package com.graphhopper.jsprit.examples;
|
||||||
import com.graphhopper.jsprit.analysis.toolbox.GraphStreamViewer;
|
import com.graphhopper.jsprit.analysis.toolbox.GraphStreamViewer;
|
||||||
import com.graphhopper.jsprit.analysis.toolbox.GraphStreamViewer.Label;
|
import com.graphhopper.jsprit.analysis.toolbox.GraphStreamViewer.Label;
|
||||||
import com.graphhopper.jsprit.core.algorithm.VehicleRoutingAlgorithm;
|
import com.graphhopper.jsprit.core.algorithm.VehicleRoutingAlgorithm;
|
||||||
|
import com.graphhopper.jsprit.core.algorithm.box.Jsprit;
|
||||||
import com.graphhopper.jsprit.core.algorithm.box.SchrimpfFactory;
|
import com.graphhopper.jsprit.core.algorithm.box.SchrimpfFactory;
|
||||||
import com.graphhopper.jsprit.core.problem.Location;
|
import com.graphhopper.jsprit.core.problem.Location;
|
||||||
import com.graphhopper.jsprit.core.problem.VehicleRoutingProblem;
|
import com.graphhopper.jsprit.core.problem.VehicleRoutingProblem;
|
||||||
|
|
@ -86,7 +87,7 @@ public class SimpleExample {
|
||||||
/*
|
/*
|
||||||
* get the algorithm out-of-the-box.
|
* get the algorithm out-of-the-box.
|
||||||
*/
|
*/
|
||||||
VehicleRoutingAlgorithm algorithm = new SchrimpfFactory().createAlgorithm(problem);
|
VehicleRoutingAlgorithm algorithm = Jsprit.createAlgorithm(problem);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* and search a solution
|
* and search a solution
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue