Package org.neo4j.gds.shortestpath
Class ShortestPathDeltaSteppingProc
- java.lang.Object
-
- org.neo4j.gds.BaseProc
-
- org.neo4j.gds.AlgoBaseProc<ALGO,ALGO_RESULT,CONFIG>
-
- org.neo4j.gds.NodePropertiesWriter<org.neo4j.gds.impl.ShortestPathDeltaStepping,org.neo4j.gds.impl.ShortestPathDeltaStepping,ShortestPathDeltaSteppingConfig>
-
- org.neo4j.gds.shortestpath.ShortestPathDeltaSteppingProc
-
public class ShortestPathDeltaSteppingProc extends org.neo4j.gds.NodePropertiesWriter<org.neo4j.gds.impl.ShortestPathDeltaStepping,org.neo4j.gds.impl.ShortestPathDeltaStepping,ShortestPathDeltaSteppingConfig>
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
-
-
Constructor Summary
Constructors Constructor Description ShortestPathDeltaSteppingProc()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected org.neo4j.gds.AlgorithmFactory<org.neo4j.gds.impl.ShortestPathDeltaStepping,ShortestPathDeltaSteppingConfig>algorithmFactory()java.util.stream.Stream<org.neo4j.gds.results.DeltaSteppingProcResult>deltaStepping(java.lang.Object graphNameOrConfig, java.util.Map<java.lang.String,java.lang.Object> configuration)protected ShortestPathDeltaSteppingConfignewConfig(java.lang.String username, java.util.Optional<java.lang.String> graphName, java.util.Optional<org.neo4j.gds.config.GraphCreateConfig> maybeImplicitCreate, org.neo4j.gds.core.CypherMapWrapper config)java.util.stream.Stream<org.neo4j.gds.impl.ShortestPathDeltaStepping.DeltaSteppingResult>stream(java.lang.Object graphNameOrConfig, java.util.Map<java.lang.String,java.lang.Object> configuration)-
Methods inherited from class org.neo4j.gds.AlgoBaseProc
compute, compute, computeEstimate, getOrCreateGraphStore, newConfig, nodeProperties, processInput, procName, sharedConfigKeys, validateConfigsAfterLoad, validateConfigsBeforeLoad, validateConfigWithGraphStore
-
Methods inherited from class org.neo4j.gds.BaseProc
allocationTracker, catalogRequest, checkLicense, databaseId, estimateGraphCreate, graphStoreFromCatalog, isGdsAdmin, newLoader, runWithExceptionLogging, runWithExceptionLogging, tryValidateMemoryUsage, tryValidateMemoryUsage, username, validateConfig, validateConfig, validateGraphName
-
-
-
-
Method Detail
-
stream
public java.util.stream.Stream<org.neo4j.gds.impl.ShortestPathDeltaStepping.DeltaSteppingResult> stream(java.lang.Object graphNameOrConfig, java.util.Map<java.lang.String,java.lang.Object> configuration)
-
deltaStepping
public java.util.stream.Stream<org.neo4j.gds.results.DeltaSteppingProcResult> deltaStepping(java.lang.Object graphNameOrConfig, java.util.Map<java.lang.String,java.lang.Object> configuration)
-
newConfig
protected ShortestPathDeltaSteppingConfig newConfig(java.lang.String username, java.util.Optional<java.lang.String> graphName, java.util.Optional<org.neo4j.gds.config.GraphCreateConfig> maybeImplicitCreate, org.neo4j.gds.core.CypherMapWrapper config)
- Specified by:
newConfigin classorg.neo4j.gds.AlgoBaseProc<org.neo4j.gds.impl.ShortestPathDeltaStepping,org.neo4j.gds.impl.ShortestPathDeltaStepping,ShortestPathDeltaSteppingConfig>
-
algorithmFactory
protected org.neo4j.gds.AlgorithmFactory<org.neo4j.gds.impl.ShortestPathDeltaStepping,ShortestPathDeltaSteppingConfig> algorithmFactory()
- Specified by:
algorithmFactoryin classorg.neo4j.gds.AlgoBaseProc<org.neo4j.gds.impl.ShortestPathDeltaStepping,org.neo4j.gds.impl.ShortestPathDeltaStepping,ShortestPathDeltaSteppingConfig>
-
-