From d0bb7a8fc7250b769e958d8a093d9ad717c238d2 Mon Sep 17 00:00:00 2001 From: David Wells Date: Tue, 17 Apr 2018 23:34:22 -0400 Subject: [PATCH] Modify a test to use the original output. The original version of this test relied on there not being a set manifold on the interior. Since the point of this test is to check for a particular crash its okay to ignore the curved geometry part. --- tests/bits/tria_crash_01.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/bits/tria_crash_01.cc b/tests/bits/tria_crash_01.cc index 9274f2c42a..3d61821563 100644 --- a/tests/bits/tria_crash_01.cc +++ b/tests/bits/tria_crash_01.cc @@ -41,6 +41,7 @@ int main () const unsigned int dim=3; Triangulation tria; GridGenerator::cylinder(tria, 1, .7); + tria.reset_all_manifolds(); deallog << "n_cells=" << tria.n_active_cells() << std::endl; @@ -77,6 +78,4 @@ int main () tria.execute_coarsening_and_refinement(); deallog << "n_cells=" << tria.n_active_cells() << std::endl; - - return 0; } -- 2.39.5