Show / Hide Table of Contents

    Class JohnsonsShortestPath<T, W>

    A Johnson's shortest path algorithm implementation.

    Inheritance
    Object
    JohnsonsShortestPath<T, W>
    Namespace: Advanced.Algorithms.Graph
    Assembly: Advanced.Algorithms.dll
    Syntax
    public class JohnsonsShortestPath<T, W> : object where W : IComparable
    Type Parameters
    Name Description
    T
    W

    Constructors

    JohnsonsShortestPath(IJohnsonsShortestPathOperators<T, W>)

    Declaration
    public JohnsonsShortestPath(IJohnsonsShortestPathOperators<T, W> operator)
    Parameters
    Type Name Description
    IJohnsonsShortestPathOperators<T, W> operator

    Methods

    FindAllPairShortestPaths(IDiGraph<T>)

    Declaration
    public List<AllPairShortestPathResult<T, W>> FindAllPairShortestPaths(IDiGraph<T> graph)
    Parameters
    Type Name Description
    IDiGraph<T> graph
    Returns
    Type Description
    List<AllPairShortestPathResult<T, W>>
    Back to top Generated by DocFX