From: bangerth Date: Tue, 27 Nov 2012 14:09:14 +0000 (+0000) Subject: Markup fix. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d437aaab11d9b0aa5f1d8cfdc4e041fd702318e3;p=dealii-svn.git Markup fix. git-svn-id: https://svn.dealii.org/trunk@27695 0785d39b-7218-0410-832d-ea1e28bc413d --- 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