From: Luca Heltai Date: Tue, 31 Mar 2015 19:26:10 +0000 (+0200) Subject: Fixed step-47. X-Git-Tag: v8.3.0-rc1~301^2~4 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55f138559a5e08d53c5c387343b52faf8f6013ac;p=dealii.git Fixed step-47. --- diff --git a/examples/step-47/step-47.cc b/examples/step-47/step-47.cc index 352091a7f8..6157620783 100644 --- a/examples/step-47/step-47.cc +++ b/examples/step-47/step-47.cc @@ -32,7 +32,7 @@ #include #include #include -#include +#include #include #include #include @@ -1061,8 +1061,9 @@ namespace Step47 GridGenerator::hyper_ball (triangulation); //GridGenerator::hyper_cube (triangulation, -1, 1); - static const HyperBallBoundary boundary; - triangulation.set_boundary (0, boundary); + static const SphericalManifold boundary; + triangulation.set_all_manifold_ids_on_boundary(0); + triangulation.set_manifold (0, boundary); triangulation.refine_global (2); }