From: wolf Date: Tue, 23 Jul 2002 14:54:15 +0000 (+0000) Subject: add three TODOs. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2604ea63c774a3050d921cca75b7af2dd72e8e05;p=dealii-svn.git add three TODOs. git-svn-id: https://svn.dealii.org/trunk@6267 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/fe/fe_values.h b/deal.II/deal.II/include/fe/fe_values.h index 5f4532419d..bff29f91b0 100644 --- a/deal.II/deal.II/include/fe/fe_values.h +++ b/deal.II/deal.II/include/fe/fe_values.h @@ -94,6 +94,7 @@ class FEValuesData * thus have a row in the array * presently under discussion. */ +//TODO[WB]: use vector2d here typedef FullMatrix ShapeVector; /** @@ -102,6 +103,7 @@ class FEValuesData * is the same as for the * @ref{ShapeVector} data type. */ +//TODO[WB]: use vector2d here typedef std::vector > > GradientVector; @@ -110,6 +112,7 @@ class FEValuesData * Likewise for second order * derivatives. */ +//TODO[WB]: use vector2d here typedef std::vector > > GradGradVector;