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

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

File:
1 edited

Legend:

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

    rc56380 re94448  
    566566
    567567        // check whether connection between bins' indices and candidate is satisfied
    568         {
     568        if (!_MCS.adjacency.empty()) {
    569569          adjacency_t::const_iterator finder = _MCS.adjacency.find(*iter);
    570570          ASSERT( finder != _MCS.adjacency.end(),
     
    574574            LOG(5, "DEBUG; Skipping index " << *iter
    575575                << " as is not connected to current set." << *filliniter << ".");
    576             ++iter; // note that for loop does not contain incrementor
     576            ++iter; // note that index-loop does not contain incrementor
    577577            continue;
    578578          }
Note: See TracChangeset for help on using the changeset viewer.