Changeset 5e70aa


Ignore:
Timestamp:
Sep 1, 2016, 8:35:29 PM (9 years ago)
Author:
Frederik Heber <heber@…>
Branches:
Gui_Fixes
Children:
70436b
Parents:
564621
Message:

FIX: FragmentationResultContainer did not clear cycles on clear().

Location:
src/Fragmentation/Summation/Containers
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/Fragmentation/Summation/Containers/FragmentationResultContainer.cpp

    r564621 r5e70aa  
    5050{
    5151  OBSERVE;
    52   ASSERT( ResultsType == BothRanges,
     52  ASSERT( (ResultsType == BothRanges) || (keysets.KeySets.empty()),
    5353      "FragmentationResultContainer::addFullResults() - mixing full and short range is not in the cards.");
    5454  ASSERT( _keysets.KeySets.size() == _forcekeysets.KeySets.size(),
     
    7979{
    8080  OBSERVE;
    81   ASSERT( (ResultsType == ShortRangeOnly) || (keysets.KeySets.empty()) ,
     81  ASSERT( (ResultsType == ShortRangeOnly) || (keysets.KeySets.empty()),
    8282      "FragmentationResultContainer::addFullResults() - mixing full and short range is not in the cards.");
    8383  ASSERT( _keysets.KeySets.size() == _forcekeysets.KeySets.size(),
  • src/Fragmentation/Summation/Containers/FragmentationResultContainer.hpp

    r564621 r5e70aa  
    126126    keysets.clear();
    127127    forcekeysets.clear();
     128    cycles.clear();
    128129    shortrangedata.clear();
    129130    summedshortrange.clear();
Note: See TracChangeset for help on using the changeset viewer.