Я хочу заменить итерацию BGL на вершины или ребра чистым эквивалентом С++ 11. Код BGL (от: http://www.boost.org/doc/libs/1_52_0/libs/graph/doc/quick_tour.html):
typename boost::graph_traits<Graph>::out_edge_iterator out_i, out_end;
typename boost::graph_traits<Graph>::edge_descriptor e;
for (std::tie(out_i, out_end) = out_edges(v, g);
out_i != out_end; ++out_i)
{
e = *out_i;
Vertex src = source(e, g), targ = target(e, g);
std::cout << "(" << name[get(vertex_id, src)]
<< "," << name[get(vertex_id, targ)] << ") ";
}
Я попробовал несколько предложений отсюда: Заменить BOOST_FOREACH на" pure " Альтернатива С++ 11?, но без везения.
Я хочу написать что-то вроде:
for (auto &e : out_edges(v, g))
{ ... }
или что-то вроде:
for (std::tie(auto out_i, auto out_end) = out_edges(v, g);
out_i != out_end; ++out_i)
{...}
Возможно ли это?