From d6f469e32f95bcea08cb3aac9d89c7af1c29e5a7 Mon Sep 17 00:00:00 2001 From: Paul ALNET Date: Sat, 25 May 2024 22:57:35 +0200 Subject: [PATCH] feat(time-trial): add maps --- .../insa/graphs/algorithm/shortestpath/RunTimeTrial.java | 8 ++++++++ 1 file changed, 8 insertions(+) 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 {