Clear the data structures used to represent the dominator tree. This will leave the tree in a state where `is_valid()` returns false.
(&mut self)
| 229 | /// Clear the data structures used to represent the dominator tree. This will leave the tree in |
| 230 | /// a state where `is_valid()` returns false. |
| 231 | pub fn clear(&mut self) { |
| 232 | self.nodes.clear(); |
| 233 | self.postorder.clear(); |
| 234 | self.valid = false; |
| 235 | } |
| 236 | |
| 237 | /// Check if the dominator tree is in a valid state. |
| 238 | /// |