2 #ifndef ANDRES_GRAPH_VISITOR_HXX
3 #define ANDRES_GRAPH_VISITOR_HXX
15 template<
class S = std::
size_t>
33 template<
class S = std::
size_t>
39 { std::cout <<
"inserting vertex " << a << std::endl; }
41 { std::cout <<
"inserting " << n <<
" vertices, starting from index " << a << std::endl; }
43 { std::cout <<
"removing vertex " << a << std::endl; }
45 { std::cout <<
"relabeling vertex " << a <<
". new label is " << b << std::endl; }
47 { std::cout <<
"inserting edge " << a << std::endl; }
49 { std::cout <<
"removing edge " << a << std::endl; }
51 { std::cout <<
"relabeling edge " << a <<
". new label is " << b << std::endl; }
57 #endif // #ifndef ANDRES_GRAPH_VISITOR_HXX