get.parents
returns a named list of character vectors. Each component corresponds to a node \(x\) of the graph (i.e. child node)
and its vector is the set of its parents (the root node is not included)
get.parents.top.down
returns a named list of character vectors. Each component corresponds to a node
\(x\) of the graph (i.e. child node) and its vector is the set of its parents.
The nodes order follows the levels of the graph from root (excluded) to leaves.
get.parents.bottom.up
returns a named list of character vectors. Each component corresponds to a node \(x\) of the
graph (i.e. child node) and its vector isthe set of its parents. The nodes are ordered from leaves to root (excluded).
get.parents.topological.sorting
a named list of character vectors. Each component corresponds to a
node \(x\) of the graph (i.e. child node) and its vector is the set of its parents. The nodes are ordered according to a
topological sorting, i.e. parents node come before children node.