From 5d1d44e484c6fb1ebec42f4afdeb4e4c0761246e Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 4 May 2011 16:16:41 +0000 Subject: [PATCH] Improve wording of documentation. git-svn-id: https://svn.dealii.org/trunk@23681 0785d39b-7218-0410-832d-ea1e28bc413d --- .../deal.II/numerics/solution_transfer.h | 31 +++++++++---------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/deal.II/include/deal.II/numerics/solution_transfer.h b/deal.II/include/deal.II/numerics/solution_transfer.h index 8bc148d2e3..aeaa888a70 100644 --- a/deal.II/include/deal.II/numerics/solution_transfer.h +++ b/deal.II/include/deal.II/numerics/solution_transfer.h @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 by the deal.II authors +// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -28,21 +28,20 @@ DEAL_II_NAMESPACE_OPEN /** - * Transfers a discrete FE function (like a solution vector) by interpolation - * while refining and/or coarsening a grid. During interpolation the - * vector is reinitialized to the new size and filled with the interpolated - * values. This class is used in the step-15, - * step-31, and step-33 tutorial programs. + * This class implements the transfer of a discrete FE function + * (e.g. a solution vector) from one mesh to another that is obtained + * by the first by a single refinement and/or coarsening step. During + * interpolation the vector is reinitialized to the new size and + * filled with the interpolated values. This class is used in the + * step-15, step-31, and step-33 tutorial programs. * *

Usage

* - * As the interpolation while - * coarsening is much more complicated to organize - * (see further documentation below) than interpolation while pure refinement, - * @p SolutionTransfer offers two possible usages. + * This class implements the algorithms in two different ways: + *