// $Id$
// Version: $Name$
//
-// Copyright (C) 2003, 2005, 2006, 2007, 2008 by the deal.II authors
+// Copyright (C) 2003, 2005, 2006, 2007, 2008, 2011 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
* tutorial programs after that.
*
* @note Support for the implementation of vector-valued elements is
- * provided by the class FE_TensorPoly. Typically, a new vector
+ * provided by the class FE_PolyTensor. Typically, a new vector
* element should be derived from this class.
*
* <h3>Discontinuous Galerkin</h3>
* </ul>
*
* @note The implementation of vector valued DG elements is supported
- * by the class FE_DG_Vector, in the way, that only the vector
+ * by the class FE_DGVector, in the way, that only the vector
* polynomial space has to be provided. The actual class derived from
* this only has to implement a constructor and
* FiniteElement::get_name().
//---------------------------------------------------------------------------
// $Id$
//
-// Copyright (C) 2010 by the deal.II authors
+// Copyright (C) 2010, 2011 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
* PolynomialsNedelec. Note that the dimension of the polynomial space
* and the argument <tt>dim</tt> must coincide.
*
- * @ingroup fe
+ * @ingroup febase
* @author Guido Kanschat
* @date 2010
*/
//---------------------------------------------------------------------------
// $Id$
//
-// Copyright (C) 2005, 2006, 2009, 2010 by the deal.II authors
+// Copyright (C) 2005, 2006, 2009, 2010, 2011 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
DEAL_II_NAMESPACE_OPEN
-/*!@addtogroup febase */
-/*@{*/
-
/**
* This class gives a unified framework for the implementation of
* FiniteElement classes based on Tensor valued polynomial spaces like
* @endverbatim
*
* @see PolynomialsBDM, PolynomialsRaviartThomas
- *
- * @author Guido Kanschat, 2005
+ * @ingroup febase
+ * @author Guido Kanschat
+ * @date 2005
**/
template <class POLY, int dim, int spacedim=dim>
class FE_PolyTensor : public FiniteElement<dim,spacedim>
mutable std::vector<Tensor<3,dim> > cached_grad_grads;
};
-/*@}*/
-
DEAL_II_NAMESPACE_CLOSE
#endif