From 0fbc11888f458dde3123657f769d889d2c1c1bd0 Mon Sep 17 00:00:00 2001 From: kronbichler Date: Fri, 2 Sep 2011 09:47:37 +0000 Subject: [PATCH] Correct number of global refinements: should be five. git-svn-id: https://svn.dealii.org/trunk@24232 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-3/step-3.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/examples/step-3/step-3.cc b/deal.II/examples/step-3/step-3.cc index 9ada5f720b..0738ce162b 100644 --- a/deal.II/examples/step-3/step-3.cc +++ b/deal.II/examples/step-3/step-3.cc @@ -213,7 +213,7 @@ void Step3::make_grid () // has 32 times 32 cells, for a // total of 1024. GridGenerator::hyper_cube (triangulation, -1, 1); - triangulation.refine_global (0); + triangulation.refine_global (5); // Unsure that 1024 is the correct number? // Let's see: n_active_cells returns the // number of active cells: -- 2.39.5