copapy.backend.get_all_dag_edges#

copapy.backend.get_all_dag_edges(nodes)#

Get all edges in the DAG by traversing from the given nodes

Parameters:

nodes (Iterable[Node]) – Iterable of nodes to start the traversal from

Yields:

Tuples of (source_node, target_node) representing edges in the DAG

Return type:

Generator[tuple[Node, Node], None, None]