feat(time-trial): add maps

This commit is contained in:
Paul Alnet 2024-05-25 22:57:35 +02:00
parent db889e56e4
commit d6f469e32f

View file

@ -25,6 +25,14 @@ public class RunTimeTrial {
public static void main(String[] args) throws Exception {
System.out.println("N,P,D,A,B");
runTest("./Maps/midi-pyrenees.mapgr", false);
runTest("./Maps/france.mapgr", false);
runTest("./Maps/belgium.mapgr", false);
runTest("./Maps/bretagne.mapgr", false);
runTest("./Maps/bordeaux.mapgr", true);
runTest("./Maps/carre.mapgr", true);
runTest("./Maps/fractal.mapgr", true);
runTest("./Maps/insa.mapgr", true);
runTest("./Maps/toulouse.mapgr", true);
}
public static void runTest(String mapName, boolean runBellman) throws IOException {