00001 00004 #ifndef __EQUIVALENT_UNIFORM_HH__ 00005 #define __EQUIVALENT_UNIFORM_HH__ 00006 00007 #include "equivalent_union_find.hh" 00008 #include "vertex_data_color.hh" 00009 00011 class equivalent_uniform: public equivalent_union_find 00012 { 00013 public: 00015 equivalent_uniform(const vertex_data_color &v):equivalent_union_find(v) 00016 {} 00018 bool lambda(int,vertex,vertex,dart,dart); 00019 }; 00020 00021 #endif // __EQUIVALENT_UNIFORM_HH__