From: Wolfgang Bangerth Date: Thu, 6 Jul 2023 13:03:40 +0000 (-0600) Subject: Remove reference to VectorSpaceVector from ReadWriteVector's documentation. X-Git-Tag: relicensing~718^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6df68cbecc1a1c1b724e9b05b2fa3e680aa981cd;p=dealii.git Remove reference to VectorSpaceVector from ReadWriteVector's documentation. --- diff --git a/include/deal.II/lac/read_write_vector.h b/include/deal.II/lac/read_write_vector.h index 91a750acf9..fbbb36e70f 100644 --- a/include/deal.II/lac/read_write_vector.h +++ b/include/deal.II/lac/read_write_vector.h @@ -104,18 +104,17 @@ namespace LinearAlgebra * ReadWriteVector is intended to represent vectors in ${\mathbb R}^N$ for * which it stores all or a subset of elements. The latter case in important * in parallel computations, where $N$ may be so large that no processor can - * actually all elements of a solution vector, but where this is also not - * necessary: one typically only has to store the values of degrees of + * actually store all elements of a solution vector, but where this is also + * not necessary: one typically only has to store the values of degrees of * freedom that live on cells that are locally owned plus potentially those * degrees of freedom that live on ghost cells. * - * This class allows to access individual elements to be read or written. - * However, it does not allow global operations such as taking the norm. - * ReadWriteVector can be used to read and write elements in vectors derived - * from VectorSpaceVector such as TrilinosWrappers::MPI::Vector and - * PETScWrappers::MPI::Vector. + * This class provides access to individual elements to be read or written. + * However, it does not allow global operations such as taking the norm + * or dot products between vectors. * - *

Storing elements

Most of the time, one will simply read from or + *

Storing elements

+ * Most of the time, one will simply read from or * write into a vector of the current class using the global numbers of * these degrees of freedom. This is done using operator()() or operator[]() * which call global_to_local() to transform the global index into a