Commit cd8a8ed4 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed output of semi-implicit time stepper.

The system is actually solved for t+tau, not t.
parent b86b84f0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -171,7 +171,7 @@ solve( const RealType& time,
      this->linearSystemAssemblerTimer.stop();

      if( verbose )
         cout << "                                                                  Solving the linear system for time " << t << "             \r" << flush;
         cout << "                                                                  Solving the linear system for time " << t + currentTau << "             \r" << flush;

      this->linearSystemSolverTimer.start();
      if( ! this->linearSystemSolver->template solve< DofVectorType, tnlLinearResidueGetter< MatrixType, DofVectorType > >( this->rightHandSide, dofVector ) )