Skip to content
Snippets Groups Projects
Commit f4470e69 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Apply suggestion to src/TNL/Solvers/Linear/GMRES_impl.h

parent fbc34f6a
No related branches found
No related tags found
1 merge request!34Runge kutta
......@@ -97,7 +97,7 @@ solve( ConstVectorViewType b, VectorViewType x )
RealType normb;
if( this->preconditioner ) {
this->preconditioner->solve( b, _M_tmp );
normb = lpNorm( _M_tmp.getView(), 2.0 );
normb = lpNorm( _M_tmp, 2.0 );
}
else
normb = lpNorm( b, 2.0 );
......
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