From f091fa334808302f97a6f6adf6709fac8dfa53d3 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 16 Apr 2004 16:08:54 +0000 Subject: [PATCH] Document one more function. git-svn-id: https://svn.dealii.org/trunk@9027 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-15/step-15.cc | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/deal.II/examples/step-15/step-15.cc b/deal.II/examples/step-15/step-15.cc index 397394b3a1..ee84e31fce 100644 --- a/deal.II/examples/step-15/step-15.cc +++ b/deal.II/examples/step-15/step-15.cc @@ -1091,7 +1091,22 @@ void MinimizationProblem::run () std::cout << std::endl; } - + + // Finally: ``main()''. This function does + // what all its counterparts in previous + // examples already did, i.e. create an + // object of the main class, and hand off + // work to them, only retaining its role as a + // guard to catch exceptions and print some + // information if we get one. The only + // difference is that it generates objects + // multiple times and runs them. Since the + // initial value for each run is a random + // function, where the random number + // generator returns different values each + // time, all these runs are actually + // different, although it may seem that they + // are independent of each other. int main () { try -- 2.39.5