Add an edge to this vertex. */
| 252 | |
| 253 | /** Add an edge to this vertex. */ |
| 254 | bool add_edge(vertex_descriptor v, const edge_property_type& ep) |
| 255 | { |
| 256 | m_edges.push_back(Edge(v, ep)); |
| 257 | return true; |
| 258 | } |
| 259 | |
| 260 | /** Remove the edge to v from this vertex. */ |
| 261 | void remove_edge(vertex_descriptor v) |