From 90c381d39e31a717d16393f80e01adaecaf506d1 Mon Sep 17 00:00:00 2001 From: wolf Date: Tue, 2 Dec 2003 01:01:49 +0000 Subject: [PATCH] Adjust some line lengths. git-svn-id: https://svn.dealii.org/trunk@8217 0785d39b-7218-0410-832d-ea1e28bc413d --- .../include/dofs/dof_constraints.templates.h | 34 ++++++++++++------- 1 file changed, 21 insertions(+), 13 deletions(-) diff --git a/deal.II/deal.II/include/dofs/dof_constraints.templates.h b/deal.II/deal.II/include/dofs/dof_constraints.templates.h index e5f72a7db6..7c27bf00f5 100644 --- a/deal.II/deal.II/include/dofs/dof_constraints.templates.h +++ b/deal.II/deal.II/include/dofs/dof_constraints.templates.h @@ -188,10 +188,12 @@ ConstraintMatrix::condense (SparseMatrix &uncondensed) const ExcMatrixNotClosed()); if (distribute[sparsity.get_column_numbers()[j]] != -1) - // distribute entry at regular - // row @p{row} and irregular column - // sparsity.get_column_numbers()[j]; set old - // entry to zero + // distribute entry at + // regular row @p{row} + // and irregular column + // sparsity.get_column_numbers()[j]; + // set old entry to + // zero { for (unsigned int q=0; q!=lines[distribute[sparsity.get_column_numbers()[j]]] @@ -216,14 +218,17 @@ ConstraintMatrix::condense (SparseMatrix &uncondensed) const // happen, since we only // operate on compressed // matrices! - Assert (sparsity.get_column_numbers()[j] != SparsityPattern::invalid_entry, + Assert (sparsity.get_column_numbers()[j] != + SparsityPattern::invalid_entry, ExcMatrixNotClosed()); if (distribute[sparsity.get_column_numbers()[j]] == -1) - // distribute entry at irregular - // row @p{row} and regular column - // sparsity.get_column_numbers()[j]. set old - // entry to zero + // distribute entry at + // irregular row + // @p{row} and regular + // column + // sparsity.get_column_numbers()[j]. set + // old entry to zero { for (unsigned int q=0; q!=lines[distribute[row]].entries.size(); ++q) @@ -235,11 +240,14 @@ ConstraintMatrix::condense (SparseMatrix &uncondensed) const uncondensed.global_entry(j) = 0.; } else - // distribute entry at irregular - // row @p{row} and irregular column + // distribute entry at + // irregular row + // @p{row} and + // irregular column // sparsity.get_column_numbers()[j] - // set old entry to one if on main - // diagonal, zero otherwise + // set old entry to one + // if on main diagonal, + // zero otherwise { for (unsigned int p=0; p!=lines[distribute[row]].entries.size(); ++p) for (unsigned int q=0; -- 2.39.5