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

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

parent 1ad95b08
No related branches found
No related tags found
1 merge request!34Runge kutta
......@@ -106,7 +106,7 @@ bool BICGStab< Matrix >::solve( ConstVectorViewType b, VectorViewType x )
else {
this->matrix->vectorProduct( s, As );
}
aux = lpNorm( As.getView(), 2.0 );
aux = lpNorm( As, 2.0 );
omega = As.scalarProduct( s ) / ( aux * aux );
/****
......
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