Changeset 24566


Ignore:
Timestamp:
02/14/20 08:34:57 (5 years ago)
Author:
Mathieu Morlighem
Message:

BUG: fixing adjoint

File:
1 edited

Legend:

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

    r24565 r24566  
    387387void TransientInput2::SetAverageAsCurrentTimeInput(IssmDouble start_time,IssmDouble end_time){/*{{{*/
    388388
    389         IssmDouble dt;
    390         IssmDouble eps=1.0e-6;
    391         IssmDouble dtsum=0;
    392         int        found,start_offset,end_offset;
    393         int        averaging_method = 0;
     389        IssmDouble  dt;
     390        IssmPDouble eps=1.0e-6;
     391        IssmDouble  dtsum=0;
     392        int         found,start_offset,end_offset;
     393        int         averaging_method = 0;
    394394
    395395        /*go through the timesteps, and grab offset for start and end*/
    396         found=binary_search(&start_offset,start_time-eps,this->timesteps,this->numtimesteps);
     396        IssmDouble temp = start_time-eps;
     397        found=binary_search(&start_offset,temp,this->timesteps,this->numtimesteps);
    397398        if(!found) _error_("Input not found (is TransientInput sorted ?)");
    398         found=binary_search(&end_offset,end_time+eps,this->timesteps,this->numtimesteps);
     399        temp = end_time+eps;
     400        found=binary_search(&end_offset,temp,this->timesteps,this->numtimesteps);
    399401        if(!found) _error_("Input not found (is TransientInput sorted ?)");
    400402
Note: See TracChangeset for help on using the changeset viewer.