From 6eac76d496bba18280f57e48026b8fd0cc56f01f Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 4 Aug 2009 13:32:47 +0000 Subject: [PATCH] Reindent a bunch of places. git-svn-id: https://svn.dealii.org/trunk@19174 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/block_matrix_base.h | 68 ++++++++++----------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/deal.II/lac/include/lac/block_matrix_base.h b/deal.II/lac/include/lac/block_matrix_base.h index 94afae3df5..663803a7ae 100644 --- a/deal.II/lac/include/lac/block_matrix_base.h +++ b/deal.II/lac/include/lac/block_matrix_base.h @@ -1245,28 +1245,28 @@ class BlockMatrixBase : public Subscriptor const VectorType &src) const; private: - /** - * Temporary vector for counting the - * elements written into the - * individual blocks when doing a - * collective add or set. - */ + /** + * Temporary vector for counting the + * elements written into the + * individual blocks when doing a + * collective add or set. + */ std::vector counter_within_block; - /** - * Temporary vector for column - * indices on each block when writing - * local to global data on each - * sparse matrix. - */ + /** + * Temporary vector for column + * indices on each block when writing + * local to global data on each + * sparse matrix. + */ std::vector > column_indices; - /** - * Temporary vector for storing the - * local values (they need to be - * reordered when writing local to - * global). - */ + /** + * Temporary vector for storing the + * local values (they need to be + * reordered when writing local to + * global). + */ std::vector > column_values; @@ -1404,8 +1404,8 @@ namespace BlockMatrixIterators matrix(other.matrix), base_iterator(other.base_iterator) { - this->row_block = other.row_block; - this->col_block = other.col_block; + this->row_block = other.row_block; + this->col_block = other.col_block; } @@ -1807,7 +1807,7 @@ template inline const typename BlockMatrixBase::BlockType & BlockMatrixBase::block (const unsigned int row, - const unsigned int column) const + const unsigned int column) const { Assert (row::n_block_rows () const - // Write the single set manually, - // since the other function has a lot - // of overhead in that case. + // Write the single set manually, + // since the other function has a lot + // of overhead in that case. template inline void @@ -1940,9 +1940,9 @@ BlockMatrixBase::set (const unsigned int row, - // This is a very messy function, since - // we need to calculate to each position - // the location in the global array. + // This is a very messy function, since + // we need to calculate to each position + // the location in the global array. template template inline @@ -2130,9 +2130,9 @@ BlockMatrixBase::add (const unsigned int row, - // This is a very messy function, since - // we need to calculate to each position - // the location in the global array. + // This is a very messy function, since + // we need to calculate to each position + // the location in the global array. template template inline @@ -2150,15 +2150,15 @@ BlockMatrixBase::add (const unsigned int row, if (col_indices_are_sorted == true) { #ifdef DEBUG - // check whether indices really are - // sorted. + // check whether indices really are + // sorted. unsigned int before = col_indices[0]; for (unsigned int i=1; i row_index = this->row_block_indices.global_to_local (row); -- 2.39.5