Show / Hide Table of Contents

    Class ShortestPathResult<T, W>

    Shortest path result object.

    Inheritance
    Object
    ShortestPathResult<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 ShortestPathResult<T, W>
        where W : IComparable
    Type Parameters
    Name Description
    T
    W

    Constructors

    ShortestPathResult(List<T>, W)

    Declaration
    public ShortestPathResult(List<T> path, W length)
    Parameters
    Type Name Description
    List<T> path
    W length

    Properties

    Length

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

    Path

    Declaration
    public List<T> Path { get; }
    Property Value
    Type Description
    List<T>
    Back to top Generated by DocFX