From fe3a617dde139e7c8c8d38f242a65f52f69ab852 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Mon, 3 Oct 2016 15:21:35 +0200 Subject: [PATCH] Fix related tests --- source/fe/fe_tools_extrapolate.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/fe/fe_tools_extrapolate.cc b/source/fe/fe_tools_extrapolate.cc index 13e85c8ca2..eb11aa2c54 100755 --- a/source/fe/fe_tools_extrapolate.cc +++ b/source/fe/fe_tools_extrapolate.cc @@ -1416,10 +1416,10 @@ namespace FETools namespace { template - void reinit_distributed(const DH &/*dh*/, - VectorType &/*vector*/) + void reinit_distributed(const DH &dh, + VectorType &vector) { - Assert(false, ExcNotImplemented()); + vector.reinit(dh.n_dofs()); } #ifdef DEAL_II_WITH_PETSC -- 2.39.5