Graph

Graphs.has_pathMethod
has_path(g::AbstractJSMDGraph, from::Int, to::Int)

Return true if there is a path between from and to in the graph g.

source
JSMDInterfaces.Graph.get_pathMethod
get_path(g::AbstractJSMDGraph, from::Int, to::Int)

Get the nodes on hte path between and including from' andto. Returns an empty array if eitherfromortoare not part ofg` or if there is no path between them.

source