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

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

parent d1bcf5c4
No related branches found
No related tags found
1 merge request!34Runge kutta
......@@ -68,7 +68,7 @@ solve( ConstVectorViewType b, VectorViewType x )
// initialize the norm of the preconditioned right-hand-side
if( this->preconditioner ) {
this->preconditioner->solve( b, M_tmp );
b_norm = lpNorm( M_tmp.getView(), 2.0 );
b_norm = lpNorm( M_tmp, 2.0 );
}
else
b_norm = lpNorm( b.getView(), 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