sisi4s
Loading...
Searching...
No Matches
GenerateRandomTensor.hpp
Go to the documentation of this file.
1#ifndef GENERATE_RANDOM_TENSOR_DEFINED
2#define GENERATE_RANDOM_TENSOR_DEFINED
3
5
6namespace sisi4s {
8public:
10 GenerateRandomTensor(std::vector<Argument> const &argumentList);
11 virtual ~GenerateRandomTensor();
12 virtual void run();
13
14 static Algorithm *create(std::vector<Argument> const &argumentList) {
15 return new GenerateRandomTensor(argumentList);
16 }
17};
18} // namespace sisi4s
19
20#endif
#define ALGORITHM_REGISTRAR_DECLARATION(NAME)
Auxiliary macro declaring the algorithm registrar for the algorithm type of the given name....
Definition Algorithm.hpp:169
Definition Algorithm.hpp:26
Definition GenerateRandomTensor.hpp:7
virtual void run()
Testing environement.
Definition GenerateRandomTensor.cxx:19
static Algorithm * create(std::vector< Argument > const &argumentList)
Definition GenerateRandomTensor.hpp:14
virtual ~GenerateRandomTensor()
Definition GenerateRandomTensor.cxx:14
Definition Algorithm.hpp:10