dataFlow

fun dataFlow(from: Node, to: Node, collectFailedPaths: Boolean = true, findAllPossiblePaths: Boolean = true): QueryTree<Boolean>

Checks if a data flow is possible between the nodes from as a source and to as sink.


fun dataFlow(from: Node, predicate: (Node) -> Boolean, collectFailedPaths: Boolean = true, findAllPossiblePaths: Boolean = true): QueryTree<Boolean>

Checks if a data flow is possible between the nodes from as a source and a node fulfilling predicate.