1
0
Fork 0
mirror of https://github.com/graphhopper/jsprit.git synced 2020-01-24 07:45:05 +01:00

created builder to have full control over objective function and

stateless/-full constraints
This commit is contained in:
oblonski 2014-03-26 07:11:05 +01:00
parent d638ac11bd
commit 8c2e3ca210

View file

@ -48,7 +48,8 @@ public class VehicleRoutingAlgorithmBuilder {
addDefaultCostCalculators=true;
}
public void setConstraintManager(ConstraintManager constraintManager) {
public void setStateAndConstraintManager(StateManager stateManager, ConstraintManager constraintManager) {
this.stateManager=stateManager;
this.constraintManager=constraintManager;
}