Ignore:
Timestamp:
Aug 20, 2014, 1:06:47 PM (11 years ago)
Author:
Frederik Heber <heber@…>
Children:
87491e
Parents:
9d51a8
git-author:
Frederik Heber <heber@…> (07/20/14 11:28:27)
git-committer:
Frederik Heber <heber@…> (08/20/14 13:06:47)
Message:

tempcommit: Not checked for empty adjacency. Merge with 74c4846a

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Fragmentation/Exporters/SphericalPointDistribution.cpp

    r9d51a8 r693036  
    501501
    502502        // check whether connection between bins' indices and candidate is satisfied
    503         {
     503        if (!_MCS.adjacency.empty()) {
    504504          adjacency_t::const_iterator finder = _MCS.adjacency.find(*iter);
    505505          ASSERT( finder != _MCS.adjacency.end(),
     
    509509            LOG(5, "DEBUG; Skipping index " << *iter
    510510                << " as is not connected to current set." << *filliniter << ".");
    511             ++iter; // note that for loop does not contain incrementor
     511            ++iter; // note that index-loop does not contain incrementor
    512512            continue;
    513513          }
Note: See TracChangeset for help on using the changeset viewer.