From 9fd41882d2bc1adf4ab5f8beb84a0fd1279caa50 Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Tue, 16 Apr 2024 15:39:27 -0400 Subject: [PATCH] Herm Op update --- Grid/algorithms/LinearOperator.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Grid/algorithms/LinearOperator.h b/Grid/algorithms/LinearOperator.h index 6733d0d0..fb996bf1 100644 --- a/Grid/algorithms/LinearOperator.h +++ b/Grid/algorithms/LinearOperator.h @@ -165,10 +165,10 @@ public: assert(0); }; void Op (const Field &in, Field &out){ - assert(0); + HermOp(in,out); } void AdjOp (const Field &in, Field &out){ - assert(0); + HermOp(in,out); } void HermOpAndNorm(const Field &in, Field &out,RealD &n1,RealD &n2){ HermOp(in,out);