From 7ac9abcd0012c32740e47b5d43bb7770365fa17c Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 27 Nov 2012 14:09:14 +0000 Subject: [PATCH] Markup fix. git-svn-id: https://svn.dealii.org/trunk@27695 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-6/step-6.cc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/deal.II/examples/step-6/step-6.cc b/deal.II/examples/step-6/step-6.cc index 05c23db424..b62734b212 100644 --- a/deal.II/examples/step-6/step-6.cc +++ b/deal.II/examples/step-6/step-6.cc @@ -426,10 +426,13 @@ void Step6::assemble_system () fe_values.JxW(q_point)); } + // Finally, transfer the contributions from @p cell_matrix and + // @p cell_rhs into the global objects. cell->get_dof_indices (local_dof_indices); - // transfer the contributions from @p cell_matrix and @cell_rhs into the - // global objects. - constraints.distribute_local_to_global(cell_matrix, cell_rhs, local_dof_indices, system_matrix, system_rhs); + constraints.distribute_local_to_global(cell_matrix, + cell_rhs, + local_dof_indices, + system_matrix, system_rhs); } // Now we are done assembling the linear system. The constrained nodes are // still in the linear system (there is a one on the diagonal of the matrix -- 2.39.5