| 314 | */ |
| 315 | template<typename Graph, typename OutputIt> |
| 316 | OutputIt |
| 317 | pruneTips(Graph& g, OutputIt result) |
| 318 | { |
| 319 | return pruneTips_if(g, result, IsTip<Graph>(g)); |
| 320 | } |
| 321 | |
| 322 | /** Remove islands. |
| 323 | * For a vertex v, remove v if deg+(v) = 0, deg-(v) = 0 and p(v) is |
nothing calls this directly
no test coverage detected