From bf7b2cc3afd5ac2ffe87b778dbdf604e40b188bf Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 10 Oct 2007 15:25:28 +0000 Subject: [PATCH] Rename m_inverse to A_inverse, because that is what it is here. git-svn-id: https://svn.dealii.org/trunk@15279 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-22/step-22.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deal.II/examples/step-22/step-22.cc b/deal.II/examples/step-22/step-22.cc index 6edf2cab6e..ce86ff9b19 100644 --- a/deal.II/examples/step-22/step-22.cc +++ b/deal.II/examples/step-22/step-22.cc @@ -737,20 +737,20 @@ template void BoussinesqFlowProblem::solve () { const InverseMatrix > - m_inverse (system_matrix.block(0,0)); + A_inverse (system_matrix.block(0,0)); Vector tmp (solution.block(0).size()); Vector schur_rhs (solution.block(1).size()); Vector 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::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)) / -- 2.39.5