![]() |
00001 // Copyright (C) 2003 Johan Hoffman and Anders Logg. 00002 // Licensed under the GNU GPL Version 2. 00003 00004 #ifndef __RADAU_QUADRATURE_H 00005 #define __RADAU_QUADRATURE_H 00006 00007 #include <dolfin/GaussianQuadrature.h> 00008 00009 namespace dolfin { 00010 00022 00023 class RadauQuadrature : public GaussianQuadrature { 00024 public: 00025 00026 RadauQuadrature(unsigned int n); 00027 00028 void show() const; 00029 00030 private: 00031 00032 void computePoints(); 00033 00034 }; 00035 00036 } 00037 00038 #endif
Documentation automatically generated with Doxygen on 10 Sep 2004.