Changeset 1190:c89884c1737b in lemon-main for lemon/vf2.h
- Timestamp:
- 10/07/17 15:46:28 (7 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/vf2.h
r1189 r1190 233 233 } 234 234 235 void setOrder() {235 void initOrder() { 236 236 // we will find pairs for the nodes of g1 in this order 237 237 … … 325 325 326 326 //calculate the lookup table for cutting the search tree 327 void setRNew1tRInOut1t() {327 void initRNew1tRInOut1t() { 328 328 typename G1::template NodeMap<int> tmp(_g1,0); 329 329 for(unsigned int i=0; i<_order.size(); ++i) { … … 361 361 _mapping_type(SUBGRAPH), _deallocMappingAfterUse(0) 362 362 { 363 setOrder();364 setRNew1tRInOut1t();363 initOrder(); 364 initRNew1tRInOut1t(); 365 365 for(typename G1::NodeIt n(g1);n!=INVALID;++n) 366 366 m[n]=INVALID;
Note: See TracChangeset
for help on using the changeset viewer.