Show / Hide Table of Contents

    Class AllPairShortestPathResult<T, W>

    All pairs shortest path algorithm result object.

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

    Constructors

    AllPairShortestPathResult(T, T, W, List<T>)

    Declaration
    public AllPairShortestPathResult(T source, T destination, W distance, List<T> path)
    Parameters
    Type Name Description
    T source
    T destination
    W distance
    List<T> path

    Properties

    Destination

    Declaration
    public T Destination { get; }
    Property Value
    Type Description
    T

    Distance

    Declaration
    public W Distance { get; }
    Property Value
    Type Description
    W

    Path

    Declaration
    public List<T> Path { get; }
    Property Value
    Type Description
    List<T>

    Source

    Declaration
    public T Source { get; }
    Property Value
    Type Description
    T
    Back to top Generated by DocFX