mirror of
https://github.com/graphhopper/jsprit.git
synced 2020-01-24 07:45:05 +01:00
refine and improve benchmarking
This commit is contained in:
parent
70bb212848
commit
3d0594448e
6 changed files with 537 additions and 72 deletions
17
jsprit-core/src/main/java/util/BenchmarkInstance.java
Normal file
17
jsprit-core/src/main/java/util/BenchmarkInstance.java
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
package util;
|
||||
|
||||
import basics.VehicleRoutingProblem;
|
||||
|
||||
public class BenchmarkInstance {
|
||||
public final String name;
|
||||
public final VehicleRoutingProblem vrp;
|
||||
public final Double bestKnownResult;
|
||||
public Double bestKnownVehicles;
|
||||
public BenchmarkInstance(String name, VehicleRoutingProblem vrp, Double bestKnownResult, Double bestKnowVehicles) {
|
||||
super();
|
||||
this.name = name;
|
||||
this.vrp = vrp;
|
||||
this.bestKnownResult = bestKnownResult;
|
||||
this.bestKnownVehicles = bestKnowVehicles;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue