/home/docs/checkouts/readthedocs.org/user_builds/ratpac/checkouts/latest/src/util/include/RAT/Quadrature.hh Source File

Ratpac-two: /home/docs/checkouts/readthedocs.org/user_builds/ratpac/checkouts/latest/src/util/include/RAT/Quadrature.hh Source File
Ratpac-two
Quadrature.hh
1 
16 #ifndef __Quadrature__
17 #define __Quadrature__
18 
19 #include <RAT/Evaluateable.hh>
20 
21 class Quadrature {
22  public:
23  virtual ~Quadrature() = 0;
24  virtual double Integrate(Evaluateable& f, const double xlo, const double xhi) = 0;
25 
26  protected:
27 
28  private:
29 
30 };
31 
32 #endif
Interface for functions of a single variable.
Definition: Evaluateable.hh:19
Interface for algorithms to integrate functions of a single variable.
Definition: Quadrature.hh:21