From 16221ca3c534a748151ba27e2fcfb7cd24e7c1d4 Mon Sep 17 00:00:00 2001 From: Joscha Gedicke Date: Tue, 8 Mar 2016 11:42:24 +0100 Subject: [PATCH] indent corrected --- include/deal.II/lac/constraint_matrix.templates.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/deal.II/lac/constraint_matrix.templates.h b/include/deal.II/lac/constraint_matrix.templates.h index b990132b5b..1170cf7316 100644 --- a/include/deal.II/lac/constraint_matrix.templates.h +++ b/include/deal.II/lac/constraint_matrix.templates.h @@ -642,7 +642,7 @@ distribute_local_to_global (const Vector &local_vector, AssertDimension (local_vector.size(), local_dof_indices_row.size()); AssertDimension (local_matrix.m(), local_dof_indices_row.size()); AssertDimension (local_matrix.n(), local_dof_indices_col.size()); - + // diagonal checks if we have only one index set (if both are equal // diagonal should be set to true). // If true we do both, assemply of the right hand side (next lines) @@ -718,9 +718,9 @@ distribute_local_to_global (const Vector &local_vector, for (size_type j=0; jentries.size(); ++j) { Assert (!(!local_lines.size() - || local_lines.is_element(position->entries[j].first)) - || is_constrained(position->entries[j].first) == false, - ExcMessage ("Tried to distribute to a fixed dof.")); + || local_lines.is_element(position->entries[j].first)) + || is_constrained(position->entries[j].first) == false, + ExcMessage ("Tried to distribute to a fixed dof.")); global_vector(position->entries[j].first) += local_vector(i) * position->entries[j].second; } -- 2.39.5