Show / Hide Table of Contents

    Class AllPairShortestPathResult<T, W>

    All pairs shortest path algorithm result object.

    Inheritance
    Object
    AllPairShortestPathResult<T, W>
    Inherited Members
    Object.ToString()
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Namespace: Advanced.Algorithms.Graph
    Assembly: Advanced.Algorithms.dll
    Syntax
    public class AllPairShortestPathResult<T, W>
        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