getSearchTree method

List<Edge> getSearchTree()

Returns the search tree of the algorithm as an array of edges.

Implementation

List<Edge> getSearchTree() {
	return _shortestPathTree.values.toList();
}