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 3bb2992..7eac184 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 @@ -1,161 +1,32 @@ package org.insa.graphs.algorithm.shortestpath; import org.insa.graphs.model.*; - -import java.util.ArrayList; -import java.util.Collections; - import org.insa.graphs.algorithm.AbstractInputData.Mode; -import org.insa.graphs.algorithm.AbstractSolution.Status; -import org.insa.graphs.algorithm.utils.*; public class AStarAlgorithm extends DijkstraAlgorithm { public AStarAlgorithm(ShortestPathData data) { super(data); } - - @Override - protected ShortestPathSolution doRun() { - - BinaryHeap