WARPXM v1.10.0
Loading...
Searching...
No Matches
wmreconstructiontest.h
Go to the documentation of this file.
1#ifndef __wmreconstructiontest__h__
2#define __wmreconstructiontest__h__
3
4// STD libraries
5#include <iostream>
6
7// WarpM includes
9
11{
12public:
14
16
17 void setup(const WxCryptSet& wxc);
18
19 // This generates the string for the function call
21 unsigned int callType) const;
22
23 // This generates the source code for the hyperapp
24 std::string generateSource(const WmUnstructuredEquationSet& eqSet) const;
25
26protected:
27 // Protected Variables
28
29 WmKernelVariable* _A;
30 WmKernelVariable* _B;
31
32private:
33 WmReconstructionTest& operator=(const WmReconstructionTest& var);
35};
36
37#endif // __wmreconstructiontest__h__
Definition: wmreconstructiontest.h:11
WmKernelVariable * _A
Definition: wmreconstructiontest.h:29
void setup(const WxCryptSet &wxc)
std::string generateSource(const WmUnstructuredEquationSet &eqSet) const
WmKernelVariable * _B
Definition: wmreconstructiontest.h:30
std::string generateSourceCall(const WmUnstructuredEquationSet &eqSet, unsigned int callType) const
Definition: wmunstructuredapp.h:31
Definition: wmunstructuredequationset.h:19
WxCryptSet extends WxCrypt by providing, in addition to name-value pairs, an set of named WxCryptSets...
Definition: wxcryptset.h:35