How many conflict groups were resolved.
(&self)
| 103 | |
| 104 | /// How many conflict groups were resolved. |
| 105 | pub fn resolved_count(&self) -> usize { |
| 106 | self.merged.len() |
| 107 | } |
| 108 | |
| 109 | /// Record an unresolved fork conflict group. |
| 110 | pub fn insert_unresolved_fork(&mut self, children: Vec<VertexId>) { |
no test coverage detected