From 8bf058c86fd820d30dfa3aa1d10e43a82eca6fc7 Mon Sep 17 00:00:00 2001 From: hartmann Date: Thu, 13 Jun 2002 15:30:01 +0000 Subject: [PATCH] Small fix. git-svn-id: https://svn.dealii.org/trunk@6107 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/fe/fe_tools.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/deal.II/deal.II/source/fe/fe_tools.cc b/deal.II/deal.II/source/fe/fe_tools.cc index 28d615f943..0dc33b60e4 100644 --- a/deal.II/deal.II/source/fe/fe_tools.cc +++ b/deal.II/deal.II/source/fe/fe_tools.cc @@ -129,7 +129,9 @@ void FETools::interpolate(const DoFHandler &dof1, const DoFHandler &dof2, Vector &u2) { - interpolate(dof1, u1, dof2, ConstraintMatrix(), u2); + ConstraintMatrix dummy; + dummy.close(); + interpolate(dof1, u1, dof2, dummy, u2); } -- 2.39.5