Record merged content for the lead vertex of a resolved SCC.
(&mut self, vid: VertexId, content: Vec<u8>)
| 80 | |
| 81 | /// Record merged content for the lead vertex of a resolved SCC. |
| 82 | pub fn insert_merged(&mut self, vid: VertexId, content: Vec<u8>) { |
| 83 | self.merged.insert(vid, content); |
| 84 | } |
| 85 | |
| 86 | /// Mark a vertex as "skip" — it belongs to a resolved SCC but is not |
| 87 | /// the lead vertex. |