From 4b70147786805196ce0e36a1fcebdf47ccea8cb8 Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Sat, 2 Aug 2003 10:15:35 +0000 Subject: [PATCH] doc changed git-svn-id: https://svn.dealii.org/trunk@7901 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/vector_memory.h | 28 +++++++++++-------------- 1 file changed, 12 insertions(+), 16 deletions(-) diff --git a/deal.II/lac/include/lac/vector_memory.h b/deal.II/lac/include/lac/vector_memory.h index 7a6f4a4f7a..28461bd301 100644 --- a/deal.II/lac/include/lac/vector_memory.h +++ b/deal.II/lac/include/lac/vector_memory.h @@ -23,22 +23,20 @@ #include -/*! @addtogroup LAC - *@{ - */ - /** - * Memory management for vectors. This class is used by all - * iterative methods to allocate space for auxilliary - * vectors. This class is used to avoid interaction with the - * operating system whenever a vector is needed. Especially, when - * an iterative method is invoked as part of an outer iteration, - * this would lead to runtime overhead and memory fragmentation. + * Memory management base class for vectors. This is an abstract base + * class used by all iterative methods to allocate space for + * auxilliary vectors. An object of a derived class with an actual + * implementation of the memory management must be created by the + * application program to be used in iterative methods. * - * Classes derived from this class implement a more or less - * sophisticated management of vectors. One of these has to be - * applied by the user according to his needs. - */ + * The purpose of this class is avoiding interaction with the + * operating system whenever a vector is needed. Especially, when an + * iterative method is invoked as part of an outer iteration, this + * would lead to runtime overhead and memory fragmentation. + * + * @author Guido Kanschat, 1998-2003 +*/ template > class VectorMemory : public Subscriptor { @@ -179,8 +177,6 @@ class GrowingVectorMemory : public VectorMemory Threads::ThreadMutex mutex; }; - -/*@}*/ /* --------------------- inline functions ---------------------- */ -- 2.39.5