| 326 | |
| 327 | template <typename G> |
| 328 | std::pair<typename ContigGraph<G>::edge_descriptor, bool> |
| 329 | edge( |
| 330 | typename ContigGraph<G>::vertex_descriptor u, |
| 331 | typename ContigGraph<G>::vertex_descriptor v, |
| 332 | const ContigGraph<G>& g) |
| 333 | { |
| 334 | return g.edge(u, v); |
| 335 | } |
| 336 | |
| 337 | // VertexMutableGraph |
| 338 |