From 597b382c80299aa5ed14495a61a821e57bfe697f Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 24 Jun 2010 01:36:42 +0000 Subject: [PATCH] Rename function. git-svn-id: https://svn.dealii.org/trunk@21303 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-45/step-45.cc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/deal.II/examples/step-45/step-45.cc b/deal.II/examples/step-45/step-45.cc index fc60d7f623..356d85a0a9 100644 --- a/deal.II/examples/step-45/step-45.cc +++ b/deal.II/examples/step-45/step-45.cc @@ -80,7 +80,7 @@ class LaplaceProblem void assemble_system (); void output_results (); - void setup_system (); + void make_grid_and_dofs (); void solve (); }; @@ -129,7 +129,7 @@ LaplaceProblem::LaplaceProblem () {} -void LaplaceProblem::setup_system () +void LaplaceProblem::make_grid_and_dofs () { GridGenerator::hyper_cube (triangulation); // We change the boundary indicator on the @@ -352,8 +352,9 @@ void LaplaceProblem::output_results () // And another function copied from previous // programs: -void LaplaceProblem::run () { - setup_system (); +void LaplaceProblem::run () +{ + make_grid_and_dofs(); assemble_system (); solve (); output_results (); -- 2.39.5