From: bangerth Date: Sat, 29 Jul 2006 19:36:48 +0000 (+0000) Subject: Undo probably accidental checkin X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ed7923cee48f2d3a28e1f6ea9d62ffbb6d829750;p=dealii-svn.git Undo probably accidental checkin git-svn-id: https://svn.dealii.org/trunk@13497 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-3/step-3.cc b/deal.II/examples/step-3/step-3.cc index 69a1e9d184..821b0e044b 100644 --- a/deal.II/examples/step-3/step-3.cc +++ b/deal.II/examples/step-3/step-3.cc @@ -208,7 +208,7 @@ void LaplaceProblem::make_grid_and_dofs () // has 32 times 32 cells, for a // total of 1024. GridGenerator::hyper_cube (triangulation, -1, 1); - triangulation.refine_global (3); + triangulation.refine_global (5); // Unsure that 1024 is the correct number? // Let's see: n_active_cells return the // number of active cells: @@ -787,9 +787,6 @@ void LaplaceProblem::solve () // job, the solution variable // contains the nodal values of the // solution function. - - solution.print (std::cout); - }