00001 00010 class CCHybridGraph 00011 { 00012 protected: 00013 void INodesAdd(graph &,node_map<GLab> &); 00014 void IEdgesAdd(graph &,node_map<GLab> &); 00015 public: 00016 //member 00017 node_map<GLab> hgnl; //type true cc, false loop 00018 edge_map<bool> hgel; //true include, false neighbor 00019 graph hg; 00020 //functions 00021 CCHybridGraph(); 00022 ~CCHybridGraph(); 00023 void IGraphAdd(graph &,node_map<GLab> &); 00024 void NEdgesAdd(graph &,node_map<GLab> &); 00025 };
1.3