| 426 | |
| 427 | template <typename G> |
| 428 | void put(vertex_removed_t tag, ContigGraph<G>& g, |
| 429 | typename ContigGraph<G>::vertex_descriptor u, |
| 430 | bool flag) |
| 431 | { |
| 432 | put(tag, static_cast<G&>(g), u, flag); |
| 433 | put(tag, static_cast<G&>(g), get(vertex_complement, g, u), flag); |
| 434 | } |
| 435 | |
| 436 | /** Return the properties of the edge of iterator eit. */ |
| 437 | template <typename G> |