]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Rename m_inverse to A_inverse, because that is what it is here.
authorbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Wed, 10 Oct 2007 15:25:28 +0000 (15:25 +0000)
committerbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Wed, 10 Oct 2007 15:25:28 +0000 (15:25 +0000)
git-svn-id: https://svn.dealii.org/trunk@15279 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/examples/step-22/step-22.cc

index 6edf2cab6ec2a35b1257e1b43be2ae0353871fbb..ce86ff9b195e1bbbfec95ec88f89bd6bbcab3911 100644 (file)
@@ -737,20 +737,20 @@ template <int dim>
 void BoussinesqFlowProblem<dim>::solve () 
 {
   const InverseMatrix<SparseMatrix<double> >
-    m_inverse (system_matrix.block(0,0));
+    A_inverse (system_matrix.block(0,0));
   Vector<double> tmp (solution.block(0).size());
   Vector<double> schur_rhs (solution.block(1).size());
   Vector<double> tmp2 (solution.block(2).size());
   
 
   {
-    m_inverse.vmult (tmp, system_rhs.block(0));
+    A_inverse.vmult (tmp, system_rhs.block(0));
     system_matrix.block(1,0).vmult (schur_rhs, tmp);
     schur_rhs -= system_rhs.block(1);
 
     
     SchurComplement
-      schur_complement (system_matrix, m_inverse);
+      schur_complement (system_matrix, A_inverse);
     
     SolverControl solver_control (system_matrix.block(0,0).m(),
                                   1e-12*schur_rhs.l2_norm());
@@ -779,7 +779,7 @@ void BoussinesqFlowProblem<dim>::solve ()
     tmp *= -1;
     tmp += system_rhs.block(0);
     
-    m_inverse.vmult (solution.block(0), tmp);
+    A_inverse.vmult (solution.block(0), tmp);
   }
 
   time_step = std::pow(0.5, double(n_refinement_steps)) /

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.