From 64a4002f122c3ddfac45d5a8cd7b26a533b7a1de Mon Sep 17 00:00:00 2001 From: David Wells Date: Sat, 9 Jan 2016 14:53:29 -0500 Subject: [PATCH] Use the global constant instead of just 0. --- cdr/solver/cdr.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdr/solver/cdr.cc b/cdr/solver/cdr.cc index 3cc8469..3c37619 100644 --- a/cdr/solver/cdr.cc +++ b/cdr/solver/cdr.cc @@ -139,7 +139,7 @@ void CDRProblem::setup_geometry() triangulation.set_manifold(manifold_id, boundary_description); for (const auto &cell : triangulation.active_cell_iterators()) { - cell->set_all_manifold_ids(0); + cell->set_all_manifold_ids(manifold_id); } triangulation.refine_global(parameters.initial_refinement_level); } -- 2.39.5