bool
CanTraverse
(
)
True if the path can traverse a link between from and to and if to can be traversed itself.
If this method returns true then a call to CanTraverse(path,to) must also return true. Thus this method is a more flexible version of CanTraverse(Path,GraphNode).
If you only need the functionality for CanTraverse(Path,GraphNode) then you may implement this method by just forwarding it to CanTraverse(Path,GraphNode)
public bool CanTraverse (Path path, GraphNode from, GraphNode to) {
return CanTraverse(path, to);
}