Home
last modified time | relevance | path

Searched defs:exercise_vertex (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/libs/graph/example/
Dvertex_basics.cpp91 template < class Graph > struct exercise_vertex struct
95 exercise_vertex(Graph& _g) : g(_g) {} in exercise_vertex() function
97 void operator()(Vertex v) const in operator ()()
122 Graph& g;
Dquick_tour.cpp20 template < class Graph > struct exercise_vertex struct
22 exercise_vertex(Graph& g_, const char name_[]) : g(g_), name(name_) {} in exercise_vertex() function
23 typedef typename graph_traits< Graph >::vertex_descriptor Vertex;
24 void operator()(const Vertex& v) const in operator ()()
65 Graph& g;
66 const char* name;