From f8d35145025fa69a9b6b48029f3a209d258cf916 Mon Sep 17 00:00:00 2001 From: wolf Date: Mon, 9 Sep 2002 21:30:55 +0000 Subject: [PATCH] Reformat some comments. git-svn-id: https://svn.dealii.org/trunk@6375 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/vector.h | 68 +++++++++++++++++++------------- 1 file changed, 41 insertions(+), 27 deletions(-) diff --git a/deal.II/lac/include/lac/vector.h b/deal.II/lac/include/lac/vector.h index 956c3c2f2b..f963a96aae 100644 --- a/deal.II/lac/include/lac/vector.h +++ b/deal.II/lac/include/lac/vector.h @@ -485,29 +485,34 @@ class Vector const bool across = true) const; /** - * Write the vector en bloc to a file. This - * is done in a binary mode, so the output - * is neither readable by humans nor - * (probably) by other computers using - * a different operating system of number - * format. + * Write the vector en bloc to a + * file. This is done in a binary + * mode, so the output is neither + * readable by humans nor + * (probably) by other computers + * using a different operating + * system of number format. */ void block_write (std::ostream &out) const; /** - * Read a vector en block from a file. This - * is done using the inverse operations to - * the above function, so it is reasonably - * fast because the bitstream is not - * interpreted. + * Read a vector en block from a + * file. This is done using the + * inverse operations to the + * above function, so it is + * reasonably fast because the + * bitstream is not interpreted. * - * The vector is resized if necessary. + * The vector is resized if + * necessary. * - * A primitive form of error checking is - * performed which will recognize the - * bluntest attempts to interpret some - * data as a vector stored bitwise to a - * file, but not more. + * A primitive form of error + * checking is performed which + * will recognize the bluntest + * attempts to interpret some + * data as a vector stored + * bitwise to a file, but not + * more. */ void block_read (std::istream &in); @@ -527,28 +532,37 @@ class Vector protected: /** - * Dimension. Actual number of components - * contained in the vector. - * Get this number by calling @p{size()}. + * Dimension. Actual number of + * components contained in the + * vector. Get this number by + * calling @p{size()}. */ unsigned int dim; /** - * Amount of memory actually reserved for - * this vector. This number may be greater - * than @p{dim} if a @p{reinit} was called with - * less memory requirements than the vector - * needed last time. At present @p{reinit} - * does not free memory when the number of + * Amount of memory actually + * reserved for this vector. This + * number may be greater than + * @p{dim} if a @p{reinit} was + * called with less memory + * requirements than the vector + * needed last time. At present + * @p{reinit} does not free + * memory when the number of * needed elements is reduced. */ unsigned int maxdim; /** - * Pointer to the array of components. + * Pointer to the array of + * elements of this vector. */ Number *val; + /** + * Make all other vector types + * friends. + */ template friend class Vector; }; -- 2.39.5