--
You received this message because you are subscribed to the Google Groups "scala-graph" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scala-graph...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/scala-graph/00b9e0b9-c4a8-4369-8452-93ca26a25d15%40googlegroups.com.
def transitivelyReachable(src: graph.NodeT, dst: graph.NodeT): Boolean =
src outgoingTo dst pipe { toExclude =>
src.innerNodeTraverser.withSubgraph(edges = !toExclude.contains(_)) hasSuccessor dst
}