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

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

parent c4cb7df5
No related branches found
No related tags found
1 merge request!34Runge kutta
...@@ -241,7 +241,7 @@ solve( ConstVectorViewType b, VectorViewType x ) ...@@ -241,7 +241,7 @@ solve( ConstVectorViewType b, VectorViewType x )
/**** /****
* Use the "orthogonal residue vector" for stopping. * Use the "orthogonal residue vector" for stopping.
*/ */
sigma[ 0 ] = lpNorm( r_0.getView(), 2.0 ); sigma[ 0 ] = lpNorm( r_0, 2.0 );
this->setResidue( sigma[ 0 ] / b_norm ); this->setResidue( sigma[ 0 ] / b_norm );
} }
} }
......
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