- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Graph/BuildInducedSubgraph.cpp
r5aaa43 r910a5d 63 63 LOG(3, "Filling Parent List."); 64 64 for (molecule::iterator iter = Son->begin(); iter != Son->end(); ++iter) { 65 ParentList[(*iter)-> father] = (*iter);65 ParentList[(*iter)->getFather()] = (*iter); 66 66 // Outputting List for debugging 67 LOG(4, "INFO: ParentList[] of " << (*iter)-> father << " is " << *ParentList[(*iter)->father] << ".");67 LOG(4, "INFO: ParentList[] of " << (*iter)->getFather() << " is " << *ParentList[(*iter)->getFather()] << "."); 68 68 } 69 69 } … … 77 77 for (molecule::iterator iter = Father->begin(); iter != Father->end(); ++iter) { 78 78 if (ParentList.count(*iter)) { 79 if (ParentList[(*iter)]-> father!= (*iter)) {79 if (ParentList[(*iter)]->getFather() != (*iter)) { 80 80 status = false; 81 81 } else {
Note:
See TracChangeset
for help on using the changeset viewer.