| 667 | |
| 668 | template <typename VP, typename EP> |
| 669 | void |
| 670 | remove_vertex( |
| 671 | typename DirectedGraph<VP, EP>::vertex_descriptor u, |
| 672 | DirectedGraph<VP, EP>& g) |
| 673 | { |
| 674 | g.remove_vertex(u); |
| 675 | } |
| 676 | |
| 677 | // EdgeMutableGraph |
| 678 |
nothing calls this directly
no test coverage detected