This commit is contained in:
Christian Zimmermann 2020-08-31 18:42:48 +02:00
parent ddf48771bc
commit 718a5f22cf
2 changed files with 86 additions and 2 deletions

View file

@ -1,6 +1,5 @@
#include "test_header.h"
#include <ctime>
#include "op4_unit_test.h"
namespace
{

85
src/tests/op4_unit_test.h Normal file
View file

@ -0,0 +1,85 @@
#include "test_header.h"
#include <ctime>
typedef OperationRoot<double,CR,DR> OpCD;
typedef OperationRoot<double,DR> OpD;
typedef CR::IndexType CI;
typedef std::shared_ptr<CI> CIP;
class OpHolderBase
{
public:
virtual std::string stype() const = 0;
virtual size_t ntype() const = 0;
};
template <class Op>
struct OpName
{
static std::string sget()
{
return "none";
}
static size_t nget()
{
return 0;
}
}
template <class Op>
class OpHolder : public OpHolderBase
{
private:
Op mOp;
public:
OpHolder(const Op& op) : mOp(op) {}
virtual std::string stype() const override final
{
return OpName<Op>::sget();
}
virtual size_t ntype() const override final
{
return OpName<Op>::nget();
}
};
template <class... Indices>
class XHighLevelOpBase
{
public:
virtual DynamicO<OpH<OperationRoot<double,typename Indices::RangeType>>>
create(const std::shared_ptr<Indices>&... inds) = 0;
};
class HighLevelOp
{
private:
std::shared_ptr<OpHolderBase> mOp;
public:
};
template <class Op, class... Indices>
class XHighLevelOp : public XHighLevelOpBase
{
private:
Op mOp;
public:
virtual DynamicO<OpH<OperationRoot<double,typename Indices::RangeType>>>
create(const std::shared_ptr<Indices>&... inds) override final
{
return mkDynOutOp(mOp, inds...);
}
};