67686970717273
* @return an algorithm which finds simple paths between two nodes. */ public static PathFinder<Path> allSimplePaths( RelationshipExpander expander, int maxDepth ) { return new AllSimplePaths( maxDepth, expander ); }