{
"exception" : "StackOverflowError",
"stacktrace" : [ "java.util.LinkedList.addLast(LinkedList.java:181)", "org.neo4j.graphalgo.impl.shortestpath.Util.constructAllPathsToNodeAsNodeLinkedLists(Util.java:230)", "org.neo4j.graphalgo.impl.shortestpath.Util.constructAllPathsToNodeAsNodeLinkedLists(Util.java:209)",
...
}
Dijkstra<Double> pathFinder = new Dijkstra<Double> (0.0, nodeFrom, nodeTo,
new RouterCostEvaluator(cost), new DoubleAdder(), new DoubleComparator(), Direction.OUTGOING, drt );
pathFinder.limitMaxCostToTraverse( maxCost );
pathFinder.getPathsAsNodes();pathFinder.limitMaxNodesToTraverse(100000);pathFinder.limitMaxNodesToTraverse(1000000);Can I use Dijkstra without "pathFinder.limitMaxNodesToTraverse(100000);" ?
--