dune-localfunctions  2.3.1
lagrange.hh
Go to the documentation of this file.
1 // -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 // vi: set et ts=4 sw=2 sts=2:
3 #ifndef DUNE_LAGRANGEFINITEELEMENT_HH
4 #define DUNE_LAGRANGEFINITEELEMENT_HH
5 
8 
12 
13 namespace Dune
14 {
42  template< template <class,unsigned int> class LP,
43  unsigned int dimDomain, class D, class R,
44  class SF=R, class CF=SF >
46  : public GenericLocalFiniteElement< LagrangeBasisFactory< LP, dimDomain, SF, CF >,
47  LagrangeCoefficientsFactory<LP, dimDomain, SF >,
48  LagrangeInterpolationFactory< LP, dimDomain, SF > >
49  {
53  public:
54  typedef typename Base::Traits Traits;
55 
58  LagrangeLocalFiniteElement ( const GeometryType &gt, unsigned int order )
59  : Base( gt, order )
60  {}
61  };
62 }
63 
64 #endif // #ifndef DUNE_LAGRANGEFINITEELEMENT_HH