Changeset 1640be


Ignore:
Timestamp:
Oct 8, 2016, 7:21:39 PM (9 years ago)
Author:
Frederik Heber <heber@…>
Branches:
Add_FitFragmentPartialChargesAction, Fix_ChargeSampling_PBC, Fix_FitPartialCharges
Children:
e08108
Parents:
eca3b6
Message:

tempcommit: Merge with ad6485c8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Fragmentation/Summation/SetValues/SamplingGrid.cpp

    reca3b6 r1640be  
    390390  for(size_t index=0;index < NDIM; ++index) {
    391391    // check that we truly have to shrink the window
    392     ASSERT ( (begin_window[index] - _begin_window[index]) > -MYSAMPLINGGRIDEPSILON,
     392    ASSERT ( (begin_window[index] - _begin_window[index]) < MYSAMPLINGGRIDEPSILON,
    393393        "SamplingGrid::shrinkWindow() - component "+toString(index)+
    394394        " of window start is less than old value.");
    395     ASSERT ( (end_window[index] - _end_window[index]) < MYSAMPLINGGRIDEPSILON,
     395    ASSERT ( (end_window[index] - _end_window[index]) > -MYSAMPLINGGRIDEPSILON,
    396396        "SamplingGrid::shrinkWindow() - component "+toString(index)+
    397397        " of window end is greater than old value.");
Note: See TracChangeset for help on using the changeset viewer.