diff --git a/be-graphes-algos/src/main/java/org/insa/graphs/algorithm/shortestpath/RunTimeTrial.java b/be-graphes-algos/src/main/java/org/insa/graphs/algorithm/shortestpath/RunTimeTrial.java index 351cf18..df61459 100644 --- a/be-graphes-algos/src/main/java/org/insa/graphs/algorithm/shortestpath/RunTimeTrial.java +++ b/be-graphes-algos/src/main/java/org/insa/graphs/algorithm/shortestpath/RunTimeTrial.java @@ -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 {