Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Namespace Members | Class Members | File Members

LobattoQuadrature.h

Go to the documentation of this file.
00001 // Copyright (C) 2003 Johan Hoffman and Anders Logg.
00002 // Licensed under the GNU GPL Version 2.
00003 
00004 #ifndef __LOBATTO_QUADRATURE_H
00005 #define __LOBATTO_QUADRATURE_H
00006 
00007 #include <dolfin/GaussianQuadrature.h>
00008 
00009 namespace dolfin {
00010 
00020 
00021   class LobattoQuadrature : public GaussianQuadrature {
00022   public:
00023     
00024     LobattoQuadrature(unsigned int n);
00025 
00026     void show() const;
00027 
00028   private:
00029 
00030     void computePoints();
00031     
00032   };
00033   
00034 }
00035 
00036 #endif


Documentation automatically generated with Doxygen on 10 Sep 2004.