Check whether a vertex should be silently skipped during output.
(&self, vid: VertexId)
| 98 | |
| 99 | /// Check whether a vertex should be silently skipped during output. |
| 100 | pub fn should_skip(&self, vid: VertexId) -> bool { |
| 101 | self.skip.contains(&vid) |
| 102 | } |
| 103 | |
| 104 | /// How many conflict groups were resolved. |
| 105 | pub fn resolved_count(&self) -> usize { |
no test coverage detected