From 4254f514e3809c43e359c594d4f4373cca487d51 Mon Sep 17 00:00:00 2001 From: wolf Date: Wed, 31 May 2000 13:14:38 +0000 Subject: [PATCH] Fix indentations. git-svn-id: https://svn.dealii.org/trunk@2985 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/sparse_ilu.templates.h | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/deal.II/lac/include/lac/sparse_ilu.templates.h b/deal.II/lac/include/lac/sparse_ilu.templates.h index d930662c08..8dd3b45ca3 100644 --- a/deal.II/lac/include/lac/sparse_ilu.templates.h +++ b/deal.II/lac/include/lac/sparse_ilu.templates.h @@ -29,12 +29,14 @@ SparseILU::SparseILU () {}; + template SparseILU::SparseILU (const SparsityPattern &sparsity) : SparseMatrix (sparsity) {}; + template void SparseILU::reinit () { @@ -42,6 +44,7 @@ void SparseILU::reinit () }; + template void SparseILU::reinit (const SparsityPattern &sparsity) { @@ -49,6 +52,7 @@ void SparseILU::reinit (const SparsityPattern &sparsity) }; + template template void SparseILU::decompose (const SparseMatrix &matrix, @@ -61,7 +65,7 @@ void SparseILU::decompose (const SparseMatrix &matrix, Assert (strengthen_diagonal>=0, ExcInvalidStrengthening (strengthen_diagonal)); -// first thing: copy over all elements + // first thing: copy over all elements // of #matrix# to the present object // // note that some elements in this @@ -112,7 +116,7 @@ void SparseILU::decompose (const SparseMatrix &matrix, }; -// now work only on this + // now work only on this // matrix const SparsityPattern &sparsity = get_sparsity_pattern(); const unsigned int * const rowstart_indices = sparsity.get_rowstart_indices(); @@ -134,7 +138,7 @@ void SparseILU::decompose (const SparseMatrix &matrix, */ -// i := row + // i := row for (unsigned int row=1; row::decompose (const SparseMatrix &matrix, }; + template template void SparseILU::apply_decomposition (Vector &dst, -- 2.39.5