Loading src/TNL/Solvers/PDE/SemiImplicitTimeStepper_impl.h +2 −1 Original line number Diff line number Diff line Loading @@ -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 ); Loading Loading
src/TNL/Solvers/PDE/SemiImplicitTimeStepper_impl.h +2 −1 Original line number Diff line number Diff line Loading @@ -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 ); Loading