1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-10 07:55:35 +00:00

Correct NonHermitianSchurOperatorBase

This commit is contained in:
Daniel Richtmann 2020-04-22 19:50:30 +02:00
parent 779e3c7442
commit ab0c5d77fb
No known key found for this signature in database
GPG Key ID: B33C490AF0772057

View File

@ -364,6 +364,9 @@ public:
void OpDir(const Field& in, Field& out, int dir, int disp) {
assert(0);
}
void OpDirAll(const Field& in, std::vector<Field>& out){
assert(0);
};
};
template<class Matrix, class Field>