1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 17:25:37 +01:00
Grid/lib/algorithms/LinearOperator.h
2015-05-13 11:25:34 +01:00

19 lines
441 B
C++

#ifndef GRID_ALGORITHM_LINEAR_OP_H
#define GRID_ALGORITHM_LINEAR_OP_H
#include <Grid.h>
namespace Grid {
// Red black cases?
template<class vtype> class LinearOperatorBase {
public:
void M(const Lattice<vtype> &in, Lattice<vtype> &out){ assert(0);}
void Mdag(const Lattice<vtype> &in, Lattice<vtype> &out){ assert(0);}
void MdagM(const Lattice<vtype> &in, Lattice<vtype> &out){ assert(0);}
};
}
#endif