From: Guido Kanschat Date: Fri, 25 Jul 2003 08:28:48 +0000 (+0000) Subject: thises added X-Git-Tag: v8.0.0~16318 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5fbc02a0b0c23d508e4ff17592f56b302c704c8c;p=dealii.git thises added git-svn-id: https://svn.dealii.org/trunk@7892 0785d39b-7218-0410-832d-ea1e28bc413d --- 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;