From 72c73dfac0a650156e2f939bf3e7457367d1f1eb Mon Sep 17 00:00:00 2001 From: bangerth Date: Fri, 18 Feb 2011 02:06:54 +0000 Subject: [PATCH] Fix constraints. git-svn-id: https://svn.dealii.org/trunk@23387 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-46/step-46.cc | 2 ++ 1 file changed, 2 insertions(+) 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); } -- 2.39.5