From b595f58e4cb13801545ec8ac35d1ec80adee82d5 Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Tue, 23 Apr 2019 21:51:23 +0100 Subject: [PATCH] Allow HMC to acces matrix --- Grid/algorithms/LinearOperator.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Grid/algorithms/LinearOperator.h b/Grid/algorithms/LinearOperator.h index b86863b8..a1be48f4 100644 --- a/Grid/algorithms/LinearOperator.h +++ b/Grid/algorithms/LinearOperator.h @@ -178,7 +178,7 @@ namespace Grid { ////////////////////////////////////////////////////////// template - class SchurOperatorBase : public LinearOperatorBase { + class SchurOperatorBase : public LinearOperatorBase { public: virtual RealD Mpc (const Field &in, Field &out) =0; virtual RealD MpcDag (const Field &in, Field &out) =0; @@ -211,10 +211,9 @@ namespace Grid { } }; template - class SchurDiagMooeeOperator : public SchurOperatorBase { - protected: - Matrix &_Mat; + class SchurDiagMooeeOperator : public SchurOperatorBase { public: + Matrix &_Mat; SchurDiagMooeeOperator (Matrix &Mat): _Mat(Mat){}; virtual RealD Mpc (const Field &in, Field &out) { Field tmp(in._grid);