From: bangerth Date: Fri, 18 Feb 2011 02:06:54 +0000 (+0000) Subject: Fix constraints. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=72c73dfac0a650156e2f939bf3e7457367d1f1eb;p=dealii-svn.git Fix constraints. git-svn-id: https://svn.dealii.org/trunk@23387 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-46/step-46.cc b/deal.II/examples/step-46/step-46.cc index a6e48b69dd..09a03a4c23 100644 --- a/deal.II/examples/step-46/step-46.cc +++ b/deal.II/examples/step-46/step-46.cc @@ -330,6 +330,8 @@ void StokesProblem::solve () SparseDirectUMFPACK direct_solver; direct_solver.initialize (system_matrix); direct_solver.vmult (solution, system_rhs); + + constraints.distribute (solution); }