Searched defs:exercise_vertex (Results 1 – 2 of 2) sorted by relevance
91 template < class Graph > struct exercise_vertex struct95 exercise_vertex(Graph& _g) : g(_g) {} in exercise_vertex() function97 void operator()(Vertex v) const in operator ()()122 Graph& g;
20 template < class Graph > struct exercise_vertex struct22 exercise_vertex(Graph& g_, const char name_[]) : g(g_), name(name_) {} in exercise_vertex() function23 typedef typename graph_traits< Graph >::vertex_descriptor Vertex;24 void operator()(const Vertex& v) const in operator ()()65 Graph& g;66 const char* name;