(self)
| 103 | operation.temporal_predecessors.remove(self) |
| 104 | |
| 105 | def clear_connections(self): |
| 106 | self.spatial_predecessors: List[Node] = [] |
| 107 | self.spatial_successors: List[Node] = [] |
| 108 | self.temporal_predecessors: List[Node] = [] |
| 109 | self.temporal_successors: List[Node] = [] |
| 110 | |
| 111 | def update_memory(self): |
| 112 | """Store current inputs/outputs into `last_memory` for temporal edges.""" |
nothing calls this directly
no outgoing calls
no test coverage detected