From 10841795429bc591d6bbbe66237e3b34b37145f9 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Wed, 8 Nov 2017 12:00:58 +0100 Subject: [PATCH] Replace Boundary by Manifold. --- tests/fe/jacobians_face.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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(); -- 2.39.5