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

added javadocs to core.algorithm.state.StateManager

This commit is contained in:
oblonski 2014-07-23 13:34:57 +02:00
parent 218e7d9817
commit 6844a92e67

View file

@ -670,7 +670,10 @@ public class StateManager implements RouteAndActivityStateGetter, IterationStart
public void informInsertionEnds(Collection<VehicleRoute> vehicleRoutes) { public void informInsertionEnds(Collection<VehicleRoute> vehicleRoutes) {
insertionListeners.informInsertionEndsListeners(vehicleRoutes); insertionListeners.informInsertionEndsListeners(vehicleRoutes);
} }
/**
* Updates load states.
*/
public void updateLoadStates() { public void updateLoadStates() {
if(!updateLoad){ if(!updateLoad){
updateLoad=true; updateLoad=true;
@ -683,6 +686,9 @@ public class StateManager implements RouteAndActivityStateGetter, IterationStart
} }
} }
/**
* Updates time-window states.
*/
public void updateTimeWindowStates() { public void updateTimeWindowStates() {
if(!updateTWs){ if(!updateTWs){
updateTWs=true; updateTWs=true;