| 103 | */ |
| 104 | template <typename Graph, typename It> |
| 105 | void remove_edges(Graph& g, It first, It last) |
| 106 | { |
| 107 | for (It it = first; it != last; ++it) |
| 108 | remove_edge(*it, g); |
| 109 | } |
| 110 | |
| 111 | /** |
| 112 | * Remove transitive edges from the specified graph. |
no test coverage detected