Uses of Interface
org.neo4j.graphalgo.CostAccumulator

Packages that use CostAccumulator
org.neo4j.graphalgo.impl.centrality Centrality graph algorithms which are allright to use, but doesn't scale to bigger graphs. 
org.neo4j.graphalgo.impl.shortestpath Package containing older implementations of Dijkstra and shortest path, where the ones in GraphAlgoFactory would be a better option. 
org.neo4j.graphalgo.impl.util   
 

Uses of CostAccumulator in org.neo4j.graphalgo.impl.centrality
 

Fields in org.neo4j.graphalgo.impl.centrality declared as CostAccumulator
protected  CostAccumulator<CentralityType> ShortestPathBasedCentrality.centralityAccumulator
           
 

Constructors in org.neo4j.graphalgo.impl.centrality with parameters of type CostAccumulator
ClosenessCentrality(SingleSourceShortestPath<ShortestPathCostType> singleSourceShortestPath, CostAccumulator<ShortestPathCostType> centralityAccumulator, ShortestPathCostType zeroValue, Set<Node> nodeSet, CostDivider<ShortestPathCostType> centralityDivider)
          Default constructor.
ShortestPathBasedCentrality(SingleSourceShortestPath<ShortestPathCostType> singleSourceShortestPath, CostAccumulator<CentralityType> centralityAccumulator, CentralityType zeroValue, Set<Node> nodeSet)
          Default constructor.
 

Uses of CostAccumulator in org.neo4j.graphalgo.impl.shortestpath
 

Fields in org.neo4j.graphalgo.impl.shortestpath declared as CostAccumulator
protected  CostAccumulator<CostType> Dijkstra.costAccumulator
           
protected  CostAccumulator<CostType> FloydWarshall.costAccumulator
           
 

Constructors in org.neo4j.graphalgo.impl.shortestpath with parameters of type CostAccumulator
Dijkstra(CostType startCost, Node startNode, Node endNode, CostEvaluator<CostType> costEvaluator, CostAccumulator<CostType> costAccumulator, Comparator<CostType> costComparator, Direction relationDirection, RelationshipType... costRelationTypes)
           
FloydWarshall(CostType startCost, CostType infinitelyBad, Direction relationDirection, CostEvaluator<CostType> costEvaluator, CostAccumulator<CostType> costAccumulator, Comparator<CostType> costComparator, Set<Node> nodeSet, Set<Relationship> relationshipSet)
           
SingleSourceShortestPathDijkstra(CostType startCost, Node startNode, CostEvaluator<CostType> costEvaluator, CostAccumulator<CostType> costAccumulator, Comparator<CostType> costComparator, Direction relationDirection, RelationshipType... costRelationTypes)
           
 

Uses of CostAccumulator in org.neo4j.graphalgo.impl.util
 

Classes in org.neo4j.graphalgo.impl.util that implement CostAccumulator
 class DoubleAdder
           
 class IntegerAdder
           
 



Copyright © 2002-2012 The Neo4j Graph Database Project. All Rights Reserved.