]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Indent files properly.
authorAlexander Grayver <agrayver@erdw.ethz.ch>
Wed, 8 Oct 2014 09:40:21 +0000 (11:40 +0200)
committerAlexander Grayver <agrayver@erdw.ethz.ch>
Wed, 8 Oct 2014 09:40:21 +0000 (11:40 +0200)
include/deal.II/lac/petsc_parallel_sparse_matrix.h
source/lac/petsc_parallel_sparse_matrix.cc

index 1bf0bc01cd409a08dcbb81fd8df3e1b6105173c6..06dc1c64c97aeb2b99930e370d711242950df9a6 100644 (file)
@@ -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<size_type> &row_lengths,
                    const bool                    is_symmetric = false,
-                  const std::vector<size_type> &offdiag_row_lengths = std::vector<size_type>());
+                   const std::vector<size_type> &offdiag_row_lengths = std::vector<size_type>());
 
       /**
        * Initialize using the given
@@ -504,7 +504,7 @@ namespace PETScWrappers
                       const size_type               local_columns,
                       const std::vector<size_type> &row_lengths,
                       const bool                    is_symmetric = false,
-                     const std::vector<size_type> &offdiag_row_lengths = std::vector<size_type>());
+                      const std::vector<size_type> &offdiag_row_lengths = std::vector<size_type>());
 
       /**
        * Same as previous functions.
index 3e59ffe75ef240753e2f7f6d8b56c25915e36e70..d488abb7d1639a929084e94bad30020e58ef52fc 100644 (file)
@@ -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));

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.