123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
-
-
-
-
-
-
- #pragma once
-
- #ifndef INTEGRATIONKERNEL_INC
- #define INTEGRATIONKERNEL_INC
-
- #include "LemmaObject.h"
-
- namespace Lemma {
-
-
-
-
-
-
- template <typename T>
- class IntegrationKernel : public LemmaObject {
-
- public:
-
-
-
-
- explicit IntegrationKernel (const ctor_key& key);
-
-
- virtual ~IntegrationKernel ();
-
-
-
-
-
-
-
-
- virtual T Argument(const Real& x, const int& iRelated)=0;
-
-
-
-
-
- virtual int GetNumRel()=0;
-
- protected:
-
-
-
-
-
- private:
-
- };
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
-
- #endif
|