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

Identity linear op added -- useful in circumstances where a linear op may or may not be needed.

Supply a trivial one if not needed
This commit is contained in:
paboyle 2017-10-25 23:47:10 +01:00
parent 303e0b927d
commit d83868fdbb

View File

@ -346,6 +346,13 @@ namespace Grid {
virtual void operator() (const Field &in, Field &out) = 0;
};
template<class Field> class IdentityLinearFunction : public LinearFunction<Field> {
public:
void operator() (const Field &in, Field &out){
out = in;
};
};
/////////////////////////////////////////////////////////////
// Base classes for Multishift solvers for operators