From 1fe504abf3860f3142732c7d473185dc8f31064a Mon Sep 17 00:00:00 2001 From: wolf Date: Tue, 10 Sep 2002 15:57:37 +0000 Subject: [PATCH] Just some cosmetics. git-svn-id: https://svn.dealii.org/trunk@6391 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/source/sparse_direct.cc | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/deal.II/lac/source/sparse_direct.cc b/deal.II/lac/source/sparse_direct.cc index 7ad0553917..c9213159a6 100644 --- a/deal.II/lac/source/sparse_direct.cc +++ b/deal.II/lac/source/sparse_direct.cc @@ -236,9 +236,12 @@ SparseDirectMA27::initialize (const SparsityPattern &sp) sparsity_pattern = &sp; - const unsigned int n_rows = sparsity_pattern->n_rows(); - const unsigned int *rowstart_indices = sparsity_pattern->get_rowstart_indices(); - const unsigned int *col_nums = sparsity_pattern->get_column_numbers(); + const unsigned int + n_rows = sparsity_pattern->n_rows(); + const unsigned int + *rowstart_indices = sparsity_pattern->get_rowstart_indices(); + const unsigned int + *col_nums = sparsity_pattern->get_column_numbers(); // first count number of nonzero // elements in the upper right @@ -350,7 +353,7 @@ SparseDirectMA27::factorize (const SparseMatrix &matrix) // set LA and fill the A array of // values - LA=static_cast(NRLNEC * LA_factor); + LA = static_cast(NRLNEC * LA_factor); A.resize (LA); fill_A (matrix); -- 2.39.5