From a6c188749c5b9cb721fcae0ef4b1e55e629195de Mon Sep 17 00:00:00 2001 From: Alexander Grayver Date: Wed, 8 Oct 2014 11:40:21 +0200 Subject: [PATCH] Indent files properly. --- .../lac/petsc_parallel_sparse_matrix.h | 20 +++++++++---------- source/lac/petsc_parallel_sparse_matrix.cc | 10 +++++----- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/include/deal.II/lac/petsc_parallel_sparse_matrix.h b/include/deal.II/lac/petsc_parallel_sparse_matrix.h index 1bf0bc01cd..06dc1c64c9 100644 --- a/include/deal.II/lac/petsc_parallel_sparse_matrix.h +++ b/include/deal.II/lac/petsc_parallel_sparse_matrix.h @@ -167,13 +167,13 @@ namespace PETScWrappers * dimensions @p m times @p n, with * an initial guess of @p * n_nonzero_per_row and @p - * n_offdiag_nonzero_per_row nonzero - * elements per row (see documentation - * of the MatCreateAIJ PETSc function - * for more information about these - * parameters). PETSc is able to - * cope with the situation that more - * than this number of elements are + * n_offdiag_nonzero_per_row nonzero + * elements per row (see documentation + * of the MatCreateAIJ PETSc function + * for more information about these + * parameters). PETSc is able to + * cope with the situation that more + * than this number of elements are * later allocated for a row, but this * involves copying data, and is thus * expensive. @@ -211,7 +211,7 @@ namespace PETScWrappers * The maximal number of nonzero * entries for diagonal and off- * diagonal blocks of each row is - * given by the @p row_lengths and + * given by the @p row_lengths and * @p offdiag_row_lengths arrays. * * For the meaning of the @p @@ -354,7 +354,7 @@ namespace PETScWrappers const size_type local_columns, const std::vector &row_lengths, const bool is_symmetric = false, - const std::vector &offdiag_row_lengths = std::vector()); + const std::vector &offdiag_row_lengths = std::vector()); /** * Initialize using the given @@ -504,7 +504,7 @@ namespace PETScWrappers const size_type local_columns, const std::vector &row_lengths, const bool is_symmetric = false, - const std::vector &offdiag_row_lengths = std::vector()); + const std::vector &offdiag_row_lengths = std::vector()); /** * Same as previous functions. diff --git a/source/lac/petsc_parallel_sparse_matrix.cc b/source/lac/petsc_parallel_sparse_matrix.cc index 3e59ffe75e..d488abb7d1 100644 --- a/source/lac/petsc_parallel_sparse_matrix.cc +++ b/source/lac/petsc_parallel_sparse_matrix.cc @@ -175,7 +175,7 @@ namespace PETScWrappers #endif AssertThrow (ierr == 0, ExcPETScError(ierr)); - do_reinit (m, n, local_rows, local_columns, + do_reinit (m, n, local_rows, local_columns, row_lengths, is_symmetric, offdiag_row_lengths); } @@ -250,7 +250,7 @@ namespace PETScWrappers = MatCreateMPIAIJ (communicator, local_rows, local_columns, m, n, - n_nonzero_per_row, 0, + n_nonzero_per_row, 0, n_offdiag_nonzero_per_row, 0, &matrix); #else @@ -258,7 +258,7 @@ namespace PETScWrappers = MatCreateAIJ (communicator, local_rows, local_columns, m, n, - n_nonzero_per_row, 0, + n_nonzero_per_row, 0, n_offdiag_nonzero_per_row, 0, &matrix); AssertThrow (ierr == 0, ExcPETScError(ierr)); @@ -330,7 +330,7 @@ namespace PETScWrappers = MatCreateMPIAIJ (communicator, local_rows, local_columns, m, n, - 0, &int_row_lengths[0], + 0, &int_row_lengths[0], 0, offdiag_row_lengths.size() ? &int_offdiag_row_lengths[0] : 0, &matrix); #else @@ -338,7 +338,7 @@ namespace PETScWrappers = MatCreateAIJ (communicator, local_rows, local_columns, m, n, - 0, &int_row_lengths[0], + 0, &int_row_lengths[0], 0, offdiag_row_lengths.size() ? &int_offdiag_row_lengths[0] : 0, &matrix); AssertThrow (ierr == 0, ExcPETScError(ierr)); -- 2.39.5