Search Results for

    Show / Hide Table of Contents

    Class VisitEventArgs

    An object carrying information about the visit of a vertex of a graph being visited by a .

    Inheritance
    System.Object
    VisitEventArgs
    Implements
    System.IEquatable<VisitEventArgs>
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    Namespace: MoreStructures.Graphs.Visitor
    Assembly: MoreStructures.dll
    Syntax
    public class VisitEventArgs : IEquatable<VisitEventArgs>

    Constructors

    | Improve this Doc View Source

    VisitEventArgs(Int32, Int32, Nullable<Int32>)

    An object carrying information about the visit of a vertex of a graph being visited by a .

    Declaration
    public VisitEventArgs(int Vertex, int ConnectedComponent, int? PreviousVertex)
    Parameters
    Type Name Description
    System.Int32 Vertex

    The vertex being visited.

    System.Int32 ConnectedComponent

    The label of the connected component, Vertex is in.

    System.Nullable<System.Int32> PreviousVertex

    The vertex whose visit led to the visit of Vertex.

    Properties

    | Improve this Doc View Source

    ConnectedComponent

    Declaration
    public int ConnectedComponent { get; set; }
    Property Value
    Type Description
    System.Int32
    | Improve this Doc View Source

    PreviousVertex

    Declaration
    public int? PreviousVertex { get; set; }
    Property Value
    Type Description
    System.Nullable<System.Int32>
    | Improve this Doc View Source

    Vertex

    Declaration
    public int Vertex { get; set; }
    Property Value
    Type Description
    System.Int32

    Implements

    System.IEquatable<T>

    Extension Methods

    SuffixStructureNodeExtensions.GetAllSuffixesFor<TEdge, TNode>(TNode, TextWithTerminator)
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX