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

mod solutionCalcCosts

This commit is contained in:
Stefan Schroeder 2013-10-09 15:53:32 +02:00
parent fb365036af
commit 2ac272ba79
4 changed files with 1 additions and 44 deletions

View file

@ -1,19 +0,0 @@
package algorithms;
import algorithms.StateManager.StateId;
class StateIdImpl implements StateId {
private String name;
public StateIdImpl(String name) {
super();
this.name = name;
}
public String toString(){
return name;
}
}

View file

@ -42,35 +42,14 @@ interface StateManager {
return state;
}
// public void setState(double val){
// state=val;
// }
}
interface States {
// void putState(String key, State state);
State getState(String key);
}
interface StateId {
String toString();
}
// Map<VehicleRoute, States> getRouteStates();
// void put(VehicleRoute route, States states);
// Map<TourActivity, States> getActivityStates();
// void put(TourActivity act, States states);
State getActivityState(TourActivity act, String stateType);
State getRouteState(VehicleRoute route, String stateType);

View file

@ -20,7 +20,6 @@
******************************************************************************/
package algorithms;
import algorithms.StateManager.StateId;
class StateTypes {
@ -42,7 +41,4 @@ class StateTypes {
final static String PAST_DELIVERIES = "pastDeliveries";
public static StateId createId(String stateId){
}
}