if (!this->inverses_ready())
{
FullMatrix<number> M_cell(this->blocksize);
- for (unsigned int cell=0; cell<nblocks; ++cell)
+ for (unsigned int cell=0; cell < this->nblocks; ++cell)
{
for (row=cell*this->blocksize, row_cell=0;
row_cell<this->blocksize;
}
}
else
- for (unsigned int cell=0; cell<nblocks; ++cell)
+ for (unsigned int cell=0; cell < this->nblocks; ++cell)
{
for (row=cell*this->blocksize, row_cell=0;
row_cell<this->blocksize;
if (!this->inverses_ready())
{
FullMatrix<number> M_cell(this->blocksize);
- for (unsigned int cell=0; cell<nblocks; ++cell)
+ for (unsigned int cell=0; cell < this->nblocks; ++cell)
{
for (row = block_start, row_cell = 0;
row_cell < this->blocksize;
}
}
else
- for (unsigned int cell=0; cell<nblocks; ++cell)
+ for (unsigned int cell=0; cell < this->nblocks; ++cell)
{
for (row = block_start, row_cell = 0;
row_cell<this->blocksize;
// row, column are the global numbering
// of the unkowns.
unsigned int row, row_cell, block_start = 0;
- unsigned int block_end=this->blocksize *nblocks;
+ unsigned int block_end=this->blocksize * this->nblocks;
number2 b_cell_row;
if (!this->inverses_ready())
Vector<inverse_type> cell_dst(this->blocksize);
// Multiply with diagonal blocks
- for (unsigned int cell=0; cell<nblocks; ++cell)
+ for (unsigned int cell=0; cell < this->nblocks; ++cell)
{
unsigned int row = cell*this->blocksize;
Vector<inverse_type> cell_dst(this->blocksize);
// Multiply with diagonal blocks
- for (unsigned int cell=0; cell<nblocks; ++cell)
+ for (unsigned int cell=0; cell < this->nblocks; ++cell)
{
unsigned int row = cell*this->blocksize;