interface SearchAStarOptions {
    directed?: boolean;
    goal: string | CollectionArgument;
    root: string | CollectionArgument;
    weight?: WeightFn;
    heuristic?(node: cytoscape.NodeCollection): number;
}

Properties

directed?: boolean
goal: string | CollectionArgument
root: string | CollectionArgument
weight?: WeightFn

Methods