Interface ITopological
- Namespace
- AlgorithmsSW.Digraph
- Assembly
- AlgorithmsSW.dll
public interface ITopological
- Extension Methods
Properties
IsDirectedAcyclic
Gets a value indicating whether the digraph is a directed acyclic graph.
bool IsDirectedAcyclic { get; }
Property Value
Order
Gets the vertices in topologically sorted order, if such an order is possible. Otherwise, null.
IEnumerable<int>? Order { get; }
Property Value
- See Also