From 1d0d8fb5150b87e4b9514f598ab22d19941da519 Mon Sep 17 00:00:00 2001 From: Melanie Darcis <mdarcis@gmx.de> Date: Wed, 13 Oct 2010 15:00:04 +0000 Subject: [PATCH] doc git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@4427 2fb0f335-1f38-0410-981e-8018bf24f1b0 --- tutorial/tutorial_coupled.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tutorial/tutorial_coupled.cc b/tutorial/tutorial_coupled.cc index 508f971352..239fd2d966 100644 --- a/tutorial/tutorial_coupled.cc +++ b/tutorial/tutorial_coupled.cc @@ -69,13 +69,13 @@ int main(int argc, char** argv) TimeManager timeManager; // instantiate the problem on the leaf grid - Problem problem(timeManager, gridPtr->leafView()); + Problem problem(timeManager, gridPtr->leafView()); /*@\label{tutorial-coupled:instantiate-problem}@*/ timeManager.init(problem, 0, dt, tEnd, !restart); // load the some previously saved state from disk if (restart) - problem.restart(restartTime); + problem.restart(restartTime); /*@\label{tutorial-coupled:restart}@*/ // run the simulation - timeManager.run(); + timeManager.run(); /*@\label{tutorial-coupled:execute}@*/ return 0; } catch (Dune::Exception &e) { /*@\label{tutorial-coupled:catch-dune-exceptions}@*/ -- GitLab