From 3dfef76839ea8368e19fff048ec91dc1bdc46223 Mon Sep 17 00:00:00 2001 From: heltai Date: Tue, 19 Nov 2013 20:05:49 +0000 Subject: [PATCH] Fixed compile bug in boundary_indicator_01 git-svn-id: https://svn.dealii.org/branches/branch_manifold_id@31714 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/codim_one/boundary_indicator_01.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/codim_one/boundary_indicator_01.cc b/tests/codim_one/boundary_indicator_01.cc index 762f75f524..adc0c4c592 100644 --- a/tests/codim_one/boundary_indicator_01.cc +++ b/tests/codim_one/boundary_indicator_01.cc @@ -75,7 +75,7 @@ int main () for (unsigned int f=0; f::faces_per_cell; ++f) if (cell->at_boundary(f)) { - cell->face(f)->set_manifold_indicator(1); + cell->face(f)->set_manifold_id(1); done = true; break; } @@ -83,7 +83,7 @@ int main () break; } - const HyperBallBoundary surface_description; + const PolarManifold surface_description; Triangulation boundary_mesh; boundary_mesh.set_manifold (0, surface_description); @@ -108,7 +108,7 @@ int main () cell != boundary_mesh.end(); ++cell) for (unsigned int f=0; f::faces_per_cell; ++f) if (cell->at_boundary(f)) - cell->face(f)->set_manifold_indicator(1); + cell->face(f)->set_manifold_id(1); boundary_mesh.refine_global (2); -- 2.39.5