Package org.neo4j.gds.shortestpath
Class ShortestPathDeltaSteppingProc<PROC_RESULT>
- java.lang.Object
-
- org.neo4j.gds.BaseProc
-
- org.neo4j.gds.AlgoBaseProc<ALGO,ALGO_RESULT,CONFIG,PROC_RESULT>
-
- org.neo4j.gds.NodePropertiesWriter<org.neo4j.gds.impl.ShortestPathDeltaStepping,org.neo4j.gds.impl.ShortestPathDeltaStepping,ShortestPathDeltaSteppingConfig,PROC_RESULT>
-
- org.neo4j.gds.shortestpath.ShortestPathDeltaSteppingProc<PROC_RESULT>
-
- All Implemented Interfaces:
org.neo4j.gds.executor.AlgorithmSpec<org.neo4j.gds.impl.ShortestPathDeltaStepping,org.neo4j.gds.impl.ShortestPathDeltaStepping,ShortestPathDeltaSteppingConfig,java.util.stream.Stream<PROC_RESULT>,org.neo4j.gds.AlgorithmFactory<?,org.neo4j.gds.impl.ShortestPathDeltaStepping,ShortestPathDeltaSteppingConfig>>
- Direct Known Subclasses:
ShortestPathDeltaSteppingStreamProc,ShortestPathDeltaSteppingWriteProc
public abstract class ShortestPathDeltaSteppingProc<PROC_RESULT> extends org.neo4j.gds.NodePropertiesWriter<org.neo4j.gds.impl.ShortestPathDeltaStepping,org.neo4j.gds.impl.ShortestPathDeltaStepping,ShortestPathDeltaSteppingConfig,PROC_RESULT>
Delta-Stepping is a non-negative single source shortest paths (NSSSP) algorithm to calculate the length of the shortest paths from a starting node to all other nodes in the graph. It can be tweaked using the delta-parameter which controls the grade of concurrency.
More information in:
https://arxiv.org/pdf/1604.02113v1.pdf
https://ae.cs.uni-frankfurt.de/pdf/diss_uli.pdf
http://www.cc.gatech.edu/~bader/papers/ShortestPaths-ALENEX2007.pdf
http://www.dis.uniroma1.it/challenge9/papers/madduri.pdf
-
-
Field Summary
Fields Modifier and Type Field Description protected static java.lang.StringDESCRIPTION
-
Constructor Summary
Constructors Constructor Description ShortestPathDeltaSteppingProc()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.neo4j.gds.GraphAlgorithmFactory<org.neo4j.gds.impl.ShortestPathDeltaStepping,ShortestPathDeltaSteppingConfig>algorithmFactory()protected ShortestPathDeltaSteppingConfignewConfig(java.lang.String username, org.neo4j.gds.core.CypherMapWrapper config)-
Methods inherited from class org.neo4j.gds.AlgoBaseProc
compute, compute, computeEstimate, configParser, name, newConfigFunction, nodeProperties, validationConfig, validator
-
Methods inherited from class org.neo4j.gds.BaseProc
allocationTracker, databaseId, executionContext, graphLoaderContext, graphStoreFromCatalog, isGdsAdmin, memoryUsageValidator, runWithExceptionLogging, runWithExceptionLogging, username, validateConfig, validateConfig, validateGraphName
-
-
-
-
Field Detail
-
DESCRIPTION
protected static final java.lang.String DESCRIPTION
- See Also:
- Constant Field Values
-
-
Method Detail
-
newConfig
protected ShortestPathDeltaSteppingConfig newConfig(java.lang.String username, org.neo4j.gds.core.CypherMapWrapper config)
- Specified by:
newConfigin classorg.neo4j.gds.AlgoBaseProc<org.neo4j.gds.impl.ShortestPathDeltaStepping,org.neo4j.gds.impl.ShortestPathDeltaStepping,ShortestPathDeltaSteppingConfig,PROC_RESULT>
-
algorithmFactory
public org.neo4j.gds.GraphAlgorithmFactory<org.neo4j.gds.impl.ShortestPathDeltaStepping,ShortestPathDeltaSteppingConfig> algorithmFactory()
- Specified by:
algorithmFactoryin interfaceorg.neo4j.gds.executor.AlgorithmSpec<org.neo4j.gds.impl.ShortestPathDeltaStepping,org.neo4j.gds.impl.ShortestPathDeltaStepping,ShortestPathDeltaSteppingConfig,java.util.stream.Stream<PROC_RESULT>,org.neo4j.gds.AlgorithmFactory<?,org.neo4j.gds.impl.ShortestPathDeltaStepping,ShortestPathDeltaSteppingConfig>>- Specified by:
algorithmFactoryin classorg.neo4j.gds.AlgoBaseProc<org.neo4j.gds.impl.ShortestPathDeltaStepping,org.neo4j.gds.impl.ShortestPathDeltaStepping,ShortestPathDeltaSteppingConfig,PROC_RESULT>
-
-