diff --git a/src/TNL/Solvers/PDE/SemiImplicitTimeStepper_impl.h b/src/TNL/Solvers/PDE/SemiImplicitTimeStepper_impl.h index 6e996c2828e8b63200cf031eb53bef5d1728e251..e191565f111138018405ddacf51893cc8f095075 100644 --- a/src/TNL/Solvers/PDE/SemiImplicitTimeStepper_impl.h +++ b/src/TNL/Solvers/PDE/SemiImplicitTimeStepper_impl.h @@ -161,7 +161,8 @@ solve( const RealType& time, Linear::Preconditioners::SolverStarterSolverPreconditionerSetter< LinearSystemSolverType, PreconditionerType > ::run( *(this->linearSystemSolver), preconditioner ); - while( t < stopTime ) + // ignore very small steps at the end, most likely caused by truncation errors + while( stopTime - t > this->timeStep * 1e-6 ) { RealType currentTau = min( this->timeStep, stopTime - t );