dijkstra: functional
This commit is contained in:
parent
26e5d5dac9
commit
ceeb5e1203
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ public class DijkstraAlgorithm extends ShortestPathAlgorithm {
|
|||
// We will find the path using the parent nodes, from the destination to the origin
|
||||
Node current_node = data.getDestination();
|
||||
Label current_label = new Label(current_node);
|
||||
System.out.println(current_node.getId());
|
||||
// System.out.println(current_node.getId());
|
||||
|
||||
while (current_node != null && current_node != data.getOrigin()) {
|
||||
// Find the label matching the parent node
|
||||
|
|
Loading…
Reference in a new issue