Add an edge to this vertex. */
| 296 | |
| 297 | /** Add an edge to this vertex. */ |
| 298 | bool add_edge(vertex_descriptor v, const edge_property_type& ep) |
| 299 | { |
| 300 | m_edges.push_back(Edge(v, ep)); |
| 301 | return true; |
| 302 | } |
| 303 | |
| 304 | /** Remove the edge to v from this vertex. */ |
| 305 | void remove_edge(vertex_descriptor v) |