Order Type
Traversal order for graph walking algorithms.
Union cases
| Union case |
Description
|
Full Usage:
BreadthFirst
|
Breadth-First Search: visit all neighbors before going deeper. |
Full Usage:
DepthFirst
|
Depth-First Search: visit as deep as possible before backtracking. |
Instance members
| Instance member |
Description
|
Full Usage:
this.IsBreadthFirst
Returns: bool
|
|
Full Usage:
this.IsDepthFirst
Returns: bool
|
|