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

remove sysout

This commit is contained in:
oblonski 2015-05-04 21:58:29 +02:00
parent 1c5f5a18ae
commit e6f5b6fbb6
2 changed files with 0 additions and 2 deletions

View file

@ -56,7 +56,6 @@ class InsertionNoiseMaker implements SoftActivityConstraint, IterationStartsList
} }
} }
maxCosts = max; maxCosts = max;
System.out.println("maxNoise="+maxCosts);
} }
private List<Location> getLocations(Job j) { private List<Location> getLocations(Job j) {

View file

@ -432,7 +432,6 @@ public class Jsprit {
if(i == 1){ if(i == 1){
double initialThreshold = Solutions.bestOf(solutions).getCost() * toDouble(getProperty(Parameter.THRESHOLD_INI.toString())); double initialThreshold = Solutions.bestOf(solutions).getCost() * toDouble(getProperty(Parameter.THRESHOLD_INI.toString()));
schrimpfAcceptance.setInitialThreshold(initialThreshold); schrimpfAcceptance.setInitialThreshold(initialThreshold);
System.out.println("threshold: " + initialThreshold);
} }
} }
}; };