Changeset 21978


Ignore:
Timestamp:
08/21/17 14:44:05 (8 years ago)
Author:
Mathieu Morlighem
Message:

CHG: fixed step numbering in transient_core (needed to use ceil rather than floor)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/cores/transient_core.cpp

    r21858 r21978  
    9090                femmodel->parameters->SetParam(step,StepEnum);
    9191
    92                 if(VerboseSolution()) _printf0_("iteration " << step << "/" << floor((finaltime-time)/dt)+step << "  time [yr]: " << setprecision(4) << time/yts << " (time step: " << dt/yts << ")\n");
     92                if(VerboseSolution()) _printf0_("iteration " << step << "/" << ceil((finaltime-time)/dt)+step << "  time [yr]: " << setprecision(4) << time/yts << " (time step: " << dt/yts << ")\n");
    9393                if(step%output_frequency==0 || (time >= finaltime - (yts*DBL_EPSILON)) || step==1)
    9494                 save_results=true;
Note: See TracChangeset for help on using the changeset viewer.