From: David Wells Date: Tue, 20 Feb 2018 13:15:40 +0000 (-0500) Subject: Use types::boundary_id in a code sample. X-Git-Tag: v9.0.0-rc1~412^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F5930%2Fhead;p=dealii.git Use types::boundary_id in a code sample. --- diff --git a/examples/step-38/doc/results.dox b/examples/step-38/doc/results.dox index d177a169e6..6bc5fbc2e4 100644 --- a/examples/step-38/doc/results.dox +++ b/examples/step-38/doc/results.dox @@ -42,7 +42,7 @@ The program also works for 1d curves in 2d, not just 2d surfaces in 3d. You can test this by changing the template argument in main() like so: @code - LaplaceBeltramiProblem<2> laplace_beltrami; + LaplaceBeltramiProblem<2> laplace_beltrami; @endcode The domain is a curve in 2d, and we can visualize the solution by using the third dimension (and color) to denote the value of the function $u(x)$. This @@ -122,7 +122,7 @@ void LaplaceBeltrami::make_grid_and_dofs () volume_mesh.set_boundary (0, boundary_description); volume_mesh.refine_global (4); - std::set boundary_ids; + std::set boundary_ids; boundary_ids.insert (0); GridGenerator::extract_boundary_mesh (volume_mesh, triangulation,