From: wolf Date: Fri, 8 Apr 2005 21:36:34 +0000 (+0000) Subject: Add the new arguments to distribute_local_to_global X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ed42212054f5df2b76b675a0233bd28fae93aca;p=dealii-svn.git Add the new arguments to distribute_local_to_global git-svn-id: https://svn.dealii.org/trunk@10453 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-17/step-17.cc b/deal.II/examples/step-17/step-17.cc index e6adf7d48c..7d61aab1e1 100644 --- a/deal.II/examples/step-17/step-17.cc +++ b/deal.II/examples/step-17/step-17.cc @@ -799,11 +799,13 @@ void ElasticProblem::assemble_system () hanging_node_constraints .distribute_local_to_global (cell_matrix, local_dof_indices, + boundary_values, system_matrix); hanging_node_constraints .distribute_local_to_global (cell_rhs, local_dof_indices, + boundary_values, system_rhs); }