public abstract class GraphAlgoFactory extends Object
Constructor and Description |
---|
GraphAlgoFactory() |
Modifier and Type | Method and Description |
---|---|
static PathFinder<org.neo4j.graphdb.Path> |
allPaths(org.neo4j.graphdb.PathExpander expander,
int maxDepth)
Returns an algorithm which can find all available paths between two
nodes.
|
static PathFinder<org.neo4j.graphdb.Path> |
allSimplePaths(org.neo4j.graphdb.PathExpander expander,
int maxDepth)
Returns an algorithm which can find all simple paths between two
nodes.
|
static PathFinder<WeightedPath> |
aStar(org.neo4j.graphdb.PathExpander expander,
CostEvaluator<Double> lengthEvaluator,
EstimateEvaluator<Double> estimateEvaluator)
Returns an
PathFinder which uses the A* algorithm to find the
cheapest path between two nodes. |
static PathFinder<WeightedPath> |
dijkstra(org.neo4j.graphdb.PathExpander expander,
CostEvaluator<Double> costEvaluator)
Returns a
PathFinder which uses the Dijkstra algorithm to find
the cheapest path between two nodes. |
static PathFinder<WeightedPath> |
dijkstra(org.neo4j.graphdb.PathExpander expander,
CostEvaluator<Double> costEvaluator,
int numberOfWantedPaths)
See
dijkstra(PathExpander, CostEvaluator) for documentation
Instead of finding all shortest paths with equal cost, find the top numberOfWantedPaths paths. |
static PathFinder<WeightedPath> |
dijkstra(org.neo4j.graphdb.PathExpander expander,
org.neo4j.graphdb.traversal.InitialBranchState stateFactory,
CostEvaluator<Double> costEvaluator)
Deprecated.
Dijkstra should not be used with state on
PathExpander
See dijkstra(PathExpander, CostEvaluator) .
See dijkstra(PathExpander, CostEvaluator) for documentation.
Uses a cost evaluator which uses the supplied property key to
represent the cost (values of type double). |
static PathFinder<WeightedPath> |
dijkstra(org.neo4j.graphdb.PathExpander expander,
org.neo4j.graphdb.traversal.InitialBranchState stateFactory,
String relationshipPropertyRepresentingCost)
Deprecated.
Dijkstra should not be used with state on
PathExpander
See dijkstra(PathExpander, CostEvaluator) .
See dijkstra(PathExpander, CostEvaluator) for documentation.
Uses a cost evaluator which uses the supplied property key to
represent the cost (values of type double). |
static PathFinder<WeightedPath> |
dijkstra(org.neo4j.graphdb.PathExpander expander,
String relationshipPropertyRepresentingCost)
See
dijkstra(PathExpander, CostEvaluator) for documentation. |
static PathFinder<WeightedPath> |
dijkstra(org.neo4j.graphdb.PathExpander expander,
String relationshipPropertyRepresentingCost,
int numberOfWantedPaths)
See
dijkstra(PathExpander, CostEvaluator) for documentation
Instead of finding all shortest paths with equal cost, find the top numberOfWantedPaths paths. |
static PathFinder<org.neo4j.graphdb.Path> |
pathsWithLength(org.neo4j.graphdb.PathExpander expander,
int length)
Returns an algorithm which can find simple all paths of a certain length
between two nodes.
|
static PathFinder<org.neo4j.graphdb.Path> |
shortestPath(org.neo4j.graphdb.PathExpander expander,
int maxDepth)
Returns an algorithm which can find all shortest paths (that is paths
with as short
Path.length() as possible) between two nodes. |
static PathFinder<org.neo4j.graphdb.Path> |
shortestPath(org.neo4j.graphdb.PathExpander expander,
int maxDepth,
int maxHitCount)
Returns an algorithm which can find all shortest paths (that is paths
with as short
Path.length() as possible) between two nodes. |
public static PathFinder<org.neo4j.graphdb.Path> allPaths(org.neo4j.graphdb.PathExpander expander, int maxDepth)
expander
- the PathExpander
to use for expanding
Relationship
s for each Path
.maxDepth
- the max Path.length()
returned paths are
allowed to have.public static PathFinder<org.neo4j.graphdb.Path> allSimplePaths(org.neo4j.graphdb.PathExpander expander, int maxDepth)
expander
- the PathExpander
to use for expanding
Relationship
s for each Path
.maxDepth
- the max Path.length()
returned paths are
allowed to have.public static PathFinder<org.neo4j.graphdb.Path> shortestPath(org.neo4j.graphdb.PathExpander expander, int maxDepth)
Path.length()
as possible) between two nodes. These
returned paths cannot contain loops (i.e. a node cannot occur more than
once in any returned path).expander
- the PathExpander
to use for expanding
Relationship
s for each Path
.maxDepth
- the max Path.length()
returned paths are allowed
to have.public static PathFinder<org.neo4j.graphdb.Path> shortestPath(org.neo4j.graphdb.PathExpander expander, int maxDepth, int maxHitCount)
Path.length()
as possible) between two nodes. These
returned paths cannot contain loops (i.e. a node cannot occur more than
once in any returned path).expander
- the PathExpander
to use for expanding
Relationship
s for each Path
.maxDepth
- the max Path.length()
returned paths are allowed
to have.maxHitCount
- the maximum number of Path
s to return.
If this number of found paths are encountered the traversal will stop.public static PathFinder<org.neo4j.graphdb.Path> pathsWithLength(org.neo4j.graphdb.PathExpander expander, int length)
expander
- the PathExpander
to use for expanding
Relationship
s for each Node
.length
- the Path.length()
returned paths will have, if any
paths were found.public static PathFinder<WeightedPath> aStar(org.neo4j.graphdb.PathExpander expander, CostEvaluator<Double> lengthEvaluator, EstimateEvaluator<Double> estimateEvaluator)
PathFinder
which uses the A* algorithm to find the
cheapest path between two nodes. The definition of "cheap" is the lowest
possible cost to get from the start node to the end node, where the cost
is returned from lengthEvaluator
and estimateEvaluator
.
These returned paths cannot contain loops (i.e. a node cannot occur more
than once in any returned path).
See http://en.wikipedia.org/wiki/A*_search_algorithm for more
information.expander
- the PathExpander
to use for expanding
Relationship
s for each Path
.lengthEvaluator
- evaluator that can return the cost represented
by each relationship the algorithm traverses.estimateEvaluator
- evaluator that returns an (optimistic)
estimation of the cost to get from the current node (in the traversal)
to the end node.public static PathFinder<WeightedPath> dijkstra(org.neo4j.graphdb.PathExpander expander, CostEvaluator<Double> costEvaluator)
PathFinder
which uses the Dijkstra algorithm to find
the cheapest path between two nodes. The definition of "cheap" is the
lowest possible cost to get from the start node to the end node, where
the cost is returned from costEvaluator
. These returned paths
cannot contain loops (i.e. a node cannot occur more than once in any
returned path).
Dijkstra assumes none negative costs on all considered relationships.
If this is not the case behaviour is undefined. Do not use Dijkstra
with negative weights or use a CostEvaluator
that handles
negative weights.
See http://en.wikipedia.org/wiki/Dijkstra%27s_algorithm for more
information.expander
- the PathExpander
to use for expanding
Relationship
s for each Path
.costEvaluator
- evaluator that can return the cost represented
by each relationship the algorithm traverses.public static PathFinder<WeightedPath> dijkstra(org.neo4j.graphdb.PathExpander expander, String relationshipPropertyRepresentingCost)
dijkstra(PathExpander, CostEvaluator)
for documentation.
Uses a cost evaluator which uses the supplied property key to
represent the cost (values of type double).expander
- the PathExpander
to use for expanding
Relationship
s for each Path
.relationshipPropertyRepresentingCost
- the property to represent cost
on each relationship the algorithm traverses.public static PathFinder<WeightedPath> dijkstra(org.neo4j.graphdb.PathExpander expander, String relationshipPropertyRepresentingCost, int numberOfWantedPaths)
dijkstra(PathExpander, CostEvaluator)
for documentation
Instead of finding all shortest paths with equal cost, find the top numberOfWantedPaths
paths.
This is usually slower than finding all shortest paths with equal cost.
Uses a cost evaluator which uses the supplied property key to
represent the cost (values of type double).expander
- the PathExpander
to use for expanding
Relationship
s for each Path
.relationshipPropertyRepresentingCost
- the property to represent cost
on each relationship the algorithm traverses.numberOfWantedPaths
- number of paths to find.public static PathFinder<WeightedPath> dijkstra(org.neo4j.graphdb.PathExpander expander, CostEvaluator<Double> costEvaluator, int numberOfWantedPaths)
dijkstra(PathExpander, CostEvaluator)
for documentation
Instead of finding all shortest paths with equal cost, find the top numberOfWantedPaths
paths.
This is usually slower than finding all shortest paths with equal cost.expander
- the PathExpander
to use for expanding
Relationship
s for each Path
.costEvaluator
- evaluator that can return the cost represented
by each relationship the algorithm traverses.numberOfWantedPaths
- number of paths to find.@Deprecated public static PathFinder<WeightedPath> dijkstra(org.neo4j.graphdb.PathExpander expander, org.neo4j.graphdb.traversal.InitialBranchState stateFactory, CostEvaluator<Double> costEvaluator)
PathExpander
See dijkstra(PathExpander, CostEvaluator)
.
See dijkstra(PathExpander, CostEvaluator)
for documentation.
Uses a cost evaluator which uses the supplied property key to
represent the cost (values of type double).expander
- the PathExpander
to use for expanding
Relationship
s for each Path
.stateFactory
- initial state for the traversal branches.costEvaluator
- the cost evaluator for each relationship the algorithm traverses.@Deprecated public static PathFinder<WeightedPath> dijkstra(org.neo4j.graphdb.PathExpander expander, org.neo4j.graphdb.traversal.InitialBranchState stateFactory, String relationshipPropertyRepresentingCost)
PathExpander
See dijkstra(PathExpander, CostEvaluator)
.
See dijkstra(PathExpander, CostEvaluator)
for documentation.
Uses a cost evaluator which uses the supplied property key to
represent the cost (values of type double).expander
- the PathExpander
to use for expanding
Relationship
s for each Path
.stateFactory
- initial state for the traversal branches.relationshipPropertyRepresentingCost
- the property to represent cost
on each relationship the algorithm traverses.Copyright © 2002–2016 The Neo4j Graph Database Project. All rights reserved.