This commit is contained in:
Gasson-Betuing Danyl 2025-05-23 19:50:22 +02:00
parent efeba4104c
commit f7328d5488
2 changed files with 1 additions and 13 deletions

View file

@ -54,7 +54,7 @@ public class AStarAlgorithm extends DijkstraAlgorithm {
else if(graph.getGraphInformation().hasMaximumSpeed()){ // Mode TEMPS 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); //System.out.println(maxSpeed);

View file

@ -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 {
}