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

added getters to analysis.toolbox.ComputationalLaboratory.class to get

algorithm- and instanceNames
This commit is contained in:
oblonski 2014-04-15 13:21:41 +02:00
parent 21ab39013c
commit bdda744b14

View file

@ -239,6 +239,14 @@ public class ComputationalLaboratory {
algorithms.add(new Algorithm(name,factory)); algorithms.add(new Algorithm(name,factory));
algorithmNames.add(name); algorithmNames.add(name);
} }
public Collection<String> getAlgorithmNames() {
return algorithmNames;
}
public Collection<String> getInstanceNames(){
return instanceNames;
}
/** /**
* Adds instance by name. * Adds instance by name.