MUQ  0.4.3
GaussPattersonQuadrature.h
Go to the documentation of this file.
1 #ifndef GAUSSPATTERSONQUADRATURE_H
2 #define GAUSSPATTERSONQUADRATURE_H
3 
5 
6 namespace muq {
7 namespace Approximation {
8 
15  public:
16 
18 
19  virtual ~GaussPattersonQuadrature() = default;
20 
21  virtual void Compute(unsigned int index) override;
22 
23  virtual unsigned int Exactness(unsigned int quadOrder) const override;
24 
25  };
26 
27 } // namespace muq
28 } // namespace Approximation
29 
30 
31 #endif
1d Gauss Patterson nested quadrature rule
virtual unsigned int Exactness(unsigned int quadOrder) const override
virtual void Compute(unsigned int index) override
Base class for multivariate quadrature rules. @detail An abstract class for computing nodes and weigh...
Definition: Quadrature.h:124