From: Martin Kronbichler Date: Wed, 8 Nov 2017 11:00:58 +0000 (+0100) Subject: Replace Boundary by Manifold. X-Git-Tag: v9.0.0-rc1~663^2~18 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=10841795429bc591d6bbbe66237e3b34b37145f9;p=dealii.git Replace Boundary by Manifold. --- diff --git a/tests/fe/jacobians_face.cc b/tests/fe/jacobians_face.cc index a4750bdd9a..d5c28411a6 100644 --- a/tests/fe/jacobians_face.cc +++ b/tests/fe/jacobians_face.cc @@ -24,15 +24,16 @@ #include #include #include -#include +#include template void test() { Triangulation tria; GridGenerator::hyper_ball (tria); - static const HyperBallBoundary boundary; - tria.set_boundary (0, boundary); + static const SphericalManifold manifold; + tria.set_all_manifold_ids_on_boundary(0); + tria.set_manifold (0, manifold); tria.begin_active()->set_refine_flag(); tria.execute_coarsening_and_refinement();