diff --git a/be-graphes-algos/src/main/java/org/insa/graphs/algorithm/shortestpath/AStarAlgorithm.java b/be-graphes-algos/src/main/java/org/insa/graphs/algorithm/shortestpath/AStarAlgorithm.java index 92763b0..fc0edee 100644 --- a/be-graphes-algos/src/main/java/org/insa/graphs/algorithm/shortestpath/AStarAlgorithm.java +++ b/be-graphes-algos/src/main/java/org/insa/graphs/algorithm/shortestpath/AStarAlgorithm.java @@ -54,7 +54,7 @@ public class AStarAlgorithm extends DijkstraAlgorithm { else if(graph.getGraphInformation().hasMaximumSpeed()){ // Mode TEMPS - maxSpeed = graph.getGraphInformation().getMaximumSpeed()/3.6; + maxSpeed = graph.getGraphInformation().getMaximumSpeed()/3.6; // en m/s //System.out.println(maxSpeed); diff --git a/be-graphes-algos/src/test/DijkstraTest.java b/be-graphes-algos/src/test/DijkstraTest.java deleted file mode 100644 index b8bcc00..0000000 --- a/be-graphes-algos/src/test/DijkstraTest.java +++ /dev/null @@ -1,12 +0,0 @@ -package org.insa.graphes.model; - -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertTrue; - -import org.junit.BeforeClass; -import org.junit.Test; - -public class DijkstraTest { - -}