* using the Dijkstra algorithm.
*/
public static PathFinder<WeightedPath> dijkstra( RelationshipExpander expander,
String relationshipPropertyRepresentingCost )
{
return dijkstra( expander, new DoubleEvaluator( relationshipPropertyRepresentingCost ) );
}