Uses of Interface
org.neo4j.graphalgo.CostEvaluator

Uses of CostEvaluator in org.neo4j.graphalgo
 

Methods in org.neo4j.graphalgo that return CostEvaluator
static CostEvaluator<Double> CommonEvaluators.doubleCostEvaluator(String relationshipCostPropertyKey)
           
static CostEvaluator<Double> CommonEvaluators.doubleCostEvaluator(String relationshipCostPropertyKey, double defaultCost)
           
static CostEvaluator<Integer> CommonEvaluators.intCostEvaluator(String relationshipCostPropertyKey)
           
 

Methods in org.neo4j.graphalgo with parameters of type CostEvaluator
static PathFinder<WeightedPath> GraphAlgoFactory.aStar(RelationshipExpander 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> GraphAlgoFactory.dijkstra(RelationshipExpander expander, CostEvaluator<Double> costEvaluator)
          Returns an PathFinder which uses the Dijkstra algorithm to find the cheapest path between two nodes.
 



Copyright © 2011 The Neo4j Graph Database Project. All Rights Reserved.