BellmanFordResult<'e> Type
Result type for Bellman-Ford algorithm.
Union cases
| Union case |
Description
|
Full Usage:
NegativeCycle
|
A negative cycle was detected (reachable from source) |
Full Usage:
NoPath
|
No path exists from start to goal |
|
A shortest path was found successfully
|
Instance members
| Instance member |
Description
|
Full Usage:
this.IsNegativeCycle
Returns: bool
|
|
Full Usage:
this.IsNoPath
Returns: bool
|
|
Full Usage:
this.IsShortestPath
Returns: bool
|
|