From: Wolfgang Bangerth Date: Wed, 31 May 2000 13:14:38 +0000 (+0000) Subject: Fix indentations. X-Git-Tag: v8.0.0~20427 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=35bca7a535a2eef4dfe8f940e8b7b6b53c55f39f;p=dealii.git Fix indentations. git-svn-id: https://svn.dealii.org/trunk@2985 0785d39b-7218-0410-832d-ea1e28bc413d --- 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,