Mark a position as verified rooted.
(&mut self, pos: Position<NodeId>)
| 639 | |
| 640 | /// Mark a position as verified rooted. |
| 641 | pub fn mark_rooted(&mut self, pos: Position<NodeId>) { |
| 642 | self.rooted.insert(pos); |
| 643 | } |
| 644 | |
| 645 | /// Check if a position has been verified as rooted. |
| 646 | pub fn is_rooted(&self, pos: &Position<NodeId>) -> bool { |