From: bangerth Date: Fri, 23 Sep 2011 00:00:22 +0000 (+0000) Subject: A modest start to documenting. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d964e9e0fd6cea86f473e450f29e77faeefef01;p=dealii-svn.git A modest start to documenting. git-svn-id: https://svn.dealii.org/trunk@24378 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-32/step-32.cc b/deal.II/examples/step-32/step-32.cc index f828f92d34..5981134d3c 100644 --- a/deal.II/examples/step-32/step-32.cc +++ b/deal.II/examples/step-32/step-32.cc @@ -4,7 +4,7 @@ /* $Id$ */ /* Author: Martin Kronbichler, Uppsala University, Wolfgang Bangerth, Texas A&M University, - Timo Heister, University of Goettingen, 2008-2011 */ + Timo Heister, University of Goettingen, 2008-2011 */ /* */ /* Copyright (C) 2008, 2009, 2010, 2011 by the deal.II authors */ /* */ @@ -13,12 +13,12 @@ /* to the file deal.II/doc/license.html for the text and */ /* further information on this license. */ -// @sect3{Include files} + // @sect3{Include files} -// We include the functionality -// of these well-known deal.II -// library files and some C++ -// header files. + //The first task as usual is to + // include the functionality of these + // well-known deal.II library files + // and some C++ header files. #include #include #include @@ -67,16 +67,6 @@ #include #include -// This is the only include file that is new: -// We use an IndexSet to describe the -// %parallel partitioning of vectors and -// matrices. -#include - -#include -#include -#include - #include #include #include @@ -84,6 +74,24 @@ #include #include + // This is the only include file that + // is new: It introduces the + // equivalent of the + // dealii::SolutionTransfer class to + // take a solution from on mesh to + // the next one upon mesh refinement, + // but in the case of parallel + // distributed triangulations: +#include + + // The following classes are used in + // parallel distributed computations + // and have all already been + // introduced in step-40: +#include +#include +#include + using namespace dealii;