Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
......@@ -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 ) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment