Changeset 22631


Ignore:
Timestamp:
03/26/18 12:00:53 (7 years ago)
Author:
Mathieu Morlighem
Message:

CHG: fixing AD, basin id needs to be cast as an int

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Elements/Tria.cpp

    r22628 r22631  
    28092809                IssmDouble highbound = 1. -sqrt((boxid_max-i-1.)/boxid_max);
    28102810                if(rel_dist_gl>=lowbound && rel_dist_gl<=highbound){
    2811                         boxid=i;
     2811                        boxid=reCast<int>(i);
    28122812                        break;
    28132813                }
Note: See TracChangeset for help on using the changeset viewer.