mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-13 01:05:36 +00:00
Fix error with conformable
This commit is contained in:
parent
176bf37372
commit
b87416dac4
@ -71,7 +71,7 @@ class GeneralisedMinimalResidual : public OperatorFunction<Field> {
|
|||||||
void operator()(LinearOperatorBase<Field> &LinOp, const Field &src, Field &psi) {
|
void operator()(LinearOperatorBase<Field> &LinOp, const Field &src, Field &psi) {
|
||||||
|
|
||||||
psi.checkerboard = src.checkerboard;
|
psi.checkerboard = src.checkerboard;
|
||||||
psi(conformable, src);
|
conformable(psi, src);
|
||||||
|
|
||||||
RealD guess = norm2(psi);
|
RealD guess = norm2(psi);
|
||||||
assert(std::isnan(guess) == 0);
|
assert(std::isnan(guess) == 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user