Ensure there are no dummy nodes remaining in the graph.
(self)
| 196 | # assume the replaced nodes already have the correct ancestry. |
| 197 | |
| 198 | def validate_consistency(self): |
| 199 | """Ensure there are no dummy nodes remaining in the graph.""" |
| 200 | [n.raise_error() for n in self.node_map.values() if isinstance(n, DummyNode)] |
| 201 | |
| 202 | def forwards_plan(self, target): |
| 203 | """ |