| 337 | } |
| 338 | |
| 339 | static void |
| 340 | removeContig(vertex_descriptor v, Graph& g) |
| 341 | { |
| 342 | clear_vertex(v, g); |
| 343 | remove_vertex(v, g); |
| 344 | g_removed.push_back(get(vertex_contig_index, g, v)); |
| 345 | g_count.removed++; |
| 346 | } |
| 347 | |
| 348 | /** Remove the specified contig from the adjacency graph. */ |
| 349 | static void |
no test coverage detected