Yog.FSharp
Getting Started Examples API Reference GitHub

BellmanFordResult<'e> Type

Result type for Bellman-Ford algorithm.

Union cases

Union case Description

NegativeCycle

Full Usage: NegativeCycle

A negative cycle was detected (reachable from source)

NoPath

Full Usage: NoPath

No path exists from start to goal

ShortestPath Path<'e>

Full Usage: ShortestPath Path<'e>

Parameters:

A shortest path was found successfully

Item : Path<'e>

Instance members

Instance member Description

this.IsNegativeCycle

Full Usage: this.IsNegativeCycle

Returns: bool
Returns: bool

this.IsNoPath

Full Usage: this.IsNoPath

Returns: bool
Returns: bool

this.IsShortestPath

Full Usage: this.IsShortestPath

Returns: bool
Returns: bool