From: Denis Davydov Date: Tue, 29 Mar 2016 05:23:39 +0000 (+0200) Subject: extend gla/vec_05 to complex-valued PETSc X-Git-Tag: v8.5.0-rc1~1153^2~20 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de28b170955e0f6cb6670235d9058512a62d746f;p=dealii.git extend gla/vec_05 to complex-valued PETSc --- diff --git a/tests/gla/vec_05.cc b/tests/gla/vec_05.cc index c12efc7a2f..fa0d83e60a 100644 --- a/tests/gla/vec_05.cc +++ b/tests/gla/vec_05.cc @@ -78,7 +78,7 @@ void test () x.reinit(g); Assert(x.has_ghost_elements(), ExcInternalError()); Assert(x.size()==g.size(), ExcInternalError()); - deallog << x(1) << std::endl; + deallog << get_real_assert_zero_imag(x(1)) << std::endl; x.reinit(v); Assert(!x.has_ghost_elements(), ExcInternalError());