Represents a visit during a node search. See Node.Search.

interface SearchVisit {
    index: number;
    node: BaseNode.Class<BaseNode.Data, BaseNode.ScratchData>;
    path: BaseEdge.Class<BaseEdge.Data, BaseEdge.ScratchData>[];
}

Hierarchy (view full)

Properties

Properties

index: number

The current iteration number.

The current node that is being visited.

The path taken in this visit from the root node to the current node.