Update von dem ganzen Projekt auf 1.1

This commit is contained in:
joachimschmidt557 2019-02-12 20:00:53 +01:00
parent f9c67cb2e0
commit 5574ea06ea
4 changed files with 25 additions and 7 deletions

View file

@ -46,7 +46,7 @@ public abstract class GraphAlgorithm<T> {
this.algorithmNodes = new HashMap<>();
for(Node<T> node : graph.getNodes())
this.algorithmNodes.put(node, new AlgorithmNode<>(sourceNode, null, -1));
this.algorithmNodes.put(node, new AlgorithmNode<>(node, null, -1));
this.algorithmNodes.get(sourceNode).value = 0;
}
@ -115,4 +115,11 @@ public abstract class GraphAlgorithm<T> {
* @return true, wenn die Kante passierbar ist.
*/
protected abstract boolean isPassable(Edge<T> edge);
/**
* Gibt an, ob eine Knoten passierbar ist.
* @param node Eine Knoten
* @return true, wenn der Knoten passierbar ist.
*/
protected abstract boolean isPassable(Node<T> node);
}