From 92dbc50259611731e2c395a6c8236f8592d48db9 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 23 Sep 2011 00:00:22 +0000 Subject: [PATCH] A modest start to documenting. git-svn-id: https://svn.dealii.org/trunk@24378 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-32/step-32.cc | 40 +++++++++++++++++------------ 1 file changed, 24 insertions(+), 16 deletions(-) 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; -- 2.39.5