From: Denis Davydov Date: Mon, 28 Mar 2016 21:09:25 +0000 (+0200) Subject: extend mpi/interpolate_02 to complex-valued PETSc X-Git-Tag: v8.5.0-rc1~1153^2~30 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d3ecb58f950291f69754feb65fc26b3ca2e5253b;p=dealii.git extend mpi/interpolate_02 to complex-valued PETSc --- diff --git a/tests/mpi/interpolate_02.cc b/tests/mpi/interpolate_02.cc index ce95fec91e..bd995a1d83 100644 --- a/tests/mpi/interpolate_02.cc +++ b/tests/mpi/interpolate_02.cc @@ -67,7 +67,7 @@ void test() PETScWrappers::MPI::Vector x (MPI_COMM_WORLD,dofh.n_dofs(),owned_set.n_elements()); VectorTools::interpolate(dofh, - ConstantFunction(1), + ConstantFunction(1), x); const double norm = x.l2_norm(); if (myid == 0)