A functor to print a vertex and its adjacencies. More...
Public Member Functions | |
template<typename Vertex > | |
void | operator() (Vertex v, std::ostream &os) |
A functor to print a vertex and its adjacencies.
The output is in the form of an adjacency-list, i.e., format:
/// source0 target00 target01 target02 ... /// source1 target10 target11 target12 ... /// : ///