From: wolf Date: Fri, 16 Apr 2004 16:08:54 +0000 (+0000) Subject: Document one more function. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79d2c5b335477df3fd48120916b0b489381af8e6;p=dealii-svn.git Document one more function. git-svn-id: https://svn.dealii.org/trunk@9027 0785d39b-7218-0410-832d-ea1e28bc413d --- 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