Build the complete graph structure including nodes, edges, and layers.
(self)
| 24 | self.cycle_manager = CycleManager() |
| 25 | |
| 26 | def build_graph_structure(self) -> None: |
| 27 | """Build the complete graph structure including nodes, edges, and layers.""" |
| 28 | self._instantiate_nodes() |
| 29 | self._initiate_edges() |
| 30 | self._determine_start_nodes() |
| 31 | self._warn_on_untriggerable_nodes() |
| 32 | self._build_topology_and_metadata() |
| 33 | |
| 34 | def _instantiate_nodes(self) -> None: |
| 35 | """Instantiate all nodes from configuration.""" |
no test coverage detected