| 531 | /** Remove edges that satisfy the predicate. */ |
| 532 | template <typename Predicate> |
| 533 | void remove_edge_if(Predicate predicate) |
| 534 | { |
| 535 | unsigned i = 0; |
| 536 | for (typename Vertices::iterator it = m_vertices.begin(); |
| 537 | it != m_vertices.end(); ++it) |
| 538 | it->remove_edge_if(vertex(i++), predicate); |
| 539 | } |
| 540 | |
| 541 | /** Return true if this vertex has been removed. */ |
| 542 | bool is_removed(vertex_descriptor u) const |
no test coverage detected