From e281a9b66990d756edfc5ff2bc3b76e6e5b75bb8 Mon Sep 17 00:00:00 2001 From: guido Date: Fri, 25 Jul 2003 08:28:48 +0000 Subject: [PATCH] thises added git-svn-id: https://svn.dealii.org/trunk@7892 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/precondition_block.templates.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/lac/include/lac/precondition_block.templates.h b/deal.II/lac/include/lac/precondition_block.templates.h index b1e6fda491..8fb5b0ab49 100644 --- a/deal.II/lac/include/lac/precondition_block.templates.h +++ b/deal.II/lac/include/lac/precondition_block.templates.h @@ -545,7 +545,7 @@ void PreconditionBlockSOR::do_Tvmult ( if (!this->inverses_ready()) { FullMatrix M_cell(this->blocksize); - for (int icell=nblocks-1; icell>=0 ; --icell) + for (int icell=this->nblocks-1; icell>=0 ; --icell) { unsigned int cell = (unsigned int) icell; // Collect upper triangle @@ -583,7 +583,7 @@ void PreconditionBlockSOR::do_Tvmult ( } } else - for (int icell=nblocks-1; icell >=0 ; --icell) + for (int icell = this->nblocks-1; icell >= 0 ; --icell) { unsigned int cell = (unsigned int) icell; for (row=cell*this->blocksize, row_cell=0; -- 2.39.5