]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Properly qualify a call.
authorwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Sun, 10 Apr 2005 04:37:07 +0000 (04:37 +0000)
committerwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Sun, 10 Apr 2005 04:37:07 +0000 (04:37 +0000)
git-svn-id: https://svn.dealii.org/trunk@10461 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/lac/include/lac/householder.h

index ae8af57b8a8e98ab9f887d21d8b5b9b2e32c89ee..ae30091ff38dc28d9e124cbcfa37777961091a16 100644 (file)
@@ -167,10 +167,11 @@ Householder<number>::least_squares (Vector<number2>& dst,
        src(i) -= sum*this->el(i,j);
     }
   
-  backward(dst, src);
+  this->backward(dst, src);
   
   number2 sum = 0.;
-  for (unsigned int i=this->n() ; i<this->m() ; ++i) sum += src(i) * src(i);
+  for (unsigned int i=this->n() ; i<this->m() ; ++i)
+    sum += src(i) * src(i);
   return std::sqrt(sum);
 }
 

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.