Return the out degree of vertex u. */
| 480 | |
| 481 | /** Return the out degree of vertex u. */ |
| 482 | degree_size_type out_degree(vertex_descriptor u) const |
| 483 | { |
| 484 | vertices_size_type ui = get(vertex_index, *this, u); |
| 485 | assert(ui < num_vertices()); |
| 486 | return m_vertices[ui].out_degree(); |
| 487 | } |
| 488 | |
| 489 | /** Return the nth vertex. */ |
| 490 | static vertex_descriptor vertex(vertices_size_type n) |
no test coverage detected