Changes in src/Graph/BondGraph.hpp [0763ce:e3e52a]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Graph/BondGraph.hpp
r0763ce re3e52a 221 221 neighboriter != ListOfNeighbors.end(); 222 222 ++neighboriter) { 223 if ((*neighboriter) > Walker) { // just to not add bonds from both sides224 const atom * const OtherWalker = dynamic_cast<const atom *>(*neighboriter);225 ASSERT(OtherWalker != NULL,226 "BondGraph::CreateAdjacency() - TesselPoint "227 +(*neighboriter)->getName()+" that was not an atom retrieved from LinkedList");223 const atom * const OtherWalker = dynamic_cast<const atom *>(*neighboriter); 224 ASSERT(OtherWalker != NULL, 225 "BondGraph::CreateAdjacency() - TesselPoint " 226 +(*neighboriter)->getName()+" that was not an atom retrieved from LinkedList"); 227 if (OtherWalker->getId() > Walker->getId()) { // just to not add bonds from both sides 228 228 LOG(4, "INFO: Current other atom is " << *OtherWalker << "."); 229 229 … … 245 245 } 246 246 } else { 247 LOG( 5, "REJECT: Not Adding: Wrong order.");247 LOG(4, "REJECT: Not Adding: Wrong order."); 248 248 } 249 249 }
Note:
See TracChangeset
for help on using the changeset viewer.