From: Ralf Hartmann Date: Fri, 10 Feb 2006 12:59:33 +0000 (+0000) Subject: FE/Q/MappingCollection operator[] and size() functions. X-Git-Tag: v8.0.0~12383 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ff51a90cc77a289c61fc1f11e3f272173027333;p=dealii.git FE/Q/MappingCollection operator[] and size() functions. git-svn-id: https://svn.dealii.org/trunk@12296 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/doxygen/headers/hp.h b/deal.II/doc/doxygen/headers/hp.h index 36716ef4fa..cca41d7369 100644 --- a/deal.II/doc/doxygen/headers/hp.h +++ b/deal.II/doc/doxygen/headers/hp.h @@ -38,21 +38,22 @@ * quadrature formula with two points in each space direction) may be * sufficient, but on another cell where a Q3 element is used, this would lead * to underintegration and we should use a QGauss(4) formula instead. Just as - * above, the exists a class hp::QCollection that acts as a collection of + * above, there exists a class hp::QCollection that acts as a collection of * quadrature formulas * * Finally, one may want to use different orders for the boundary * approximation for cells with different orders for the finite element. The * hp::MappingCollection class allows to do this. * - * All of these three classes, the hp::FECollection, hp::QCollection, and - * hp::MappingCollection classes, implement a similar interface. They have - * functions add_*() to add a finite element, quadrature formula, - * or mapping to the collection. They have a get_*(unsigned int) - * function that allows to retrieve a reference to a given element of the - * collection. And they have a n_*() function that returns the - * number of elements in the collection. Some of the classes, in particular - * that holding finite element objects, also implement other functions + * All of these three classes, the hp::FECollection, hp::QCollection, + * and hp::MappingCollection classes, implement a similar + * interface. They have functions add_*() to add a finite + * element, quadrature formula, or mapping to the collection. They + * have an operator[] (unsigned int) function that allows to + * retrieve a reference to a given element of the collection. And they + * have a size() function that returns the number of + * elements in the collection. Some of the classes, in particular that + * holding finite element objects, also implement other functions * specific to their purpose. * * The similarity goes beyond the interface: When adding an element to the