Changeset 24659


Ignore:
Timestamp:
03/12/20 09:14:42 (5 years ago)
Author:
Mathieu Morlighem
Message:

BUG: abs to fabs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Inputs2/TransientInput2.cpp

    r24656 r24659  
    141141        /*Check whether this is the last time step that we have*/
    142142        if(this->numtimesteps){
    143                 if(abs(this->timesteps[this->numtimesteps-1]-time)<1.0e-5){
     143                if(fabs(this->timesteps[this->numtimesteps-1]-time)<1.0e-5){
    144144                        this->AddTriaTimeInput(this->numtimesteps-1,numindices,indices,values_in,interp_in);
    145145                        return;
Note: See TracChangeset for help on using the changeset viewer.