find_all_paths: Find all paths between two nodes
Description
Find all the paths between two nodes in a graph.
Not all graphs support this function. Currently only
DirectedAcyclicGraph supports this.
Usage
find_all_paths(graph, from, to)
Value
A list of character vectors
Arguments
- graph
A graph object
- from
The starting node of the path
- to
The ending node of the path