1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-04 19:25:56 +01:00

Minor tweak to compile

This commit is contained in:
Peter Boyle 2020-06-05 21:50:15 -04:00
parent 14fcd0912a
commit 5a73ef3647

View File

@ -31,7 +31,6 @@ Author: paboyle <paboyle@ph.ed.ac.uk>
using namespace std; using namespace std;
using namespace Grid; using namespace Grid;
;
template<class Field> class DumbOperator : public LinearOperatorBase<Field> { template<class Field> class DumbOperator : public LinearOperatorBase<Field> {
public: public:
@ -57,6 +56,7 @@ public:
// Support for coarsening to a multigrid // Support for coarsening to a multigrid
void OpDiag (const Field &in, Field &out) {}; void OpDiag (const Field &in, Field &out) {};
void OpDir (const Field &in, Field &out,int dir,int disp){}; void OpDir (const Field &in, Field &out,int dir,int disp){};
void OpDirAll (const Field &in, std::vector<Field> &out) {};
void Op (const Field &in, Field &out){ void Op (const Field &in, Field &out){
out = scale * in; out = scale * in;