From 9b5633ff4f6b13bfd07cebffadbe7bd70177efea Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Mon, 25 May 2015 13:42:36 +0100 Subject: [PATCH] Herm op --- lib/algorithms/LinearOperator.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/algorithms/LinearOperator.h b/lib/algorithms/LinearOperator.h index 167213ec..cb6240ba 100644 --- a/lib/algorithms/LinearOperator.h +++ b/lib/algorithms/LinearOperator.h @@ -106,6 +106,10 @@ namespace Grid { public: virtual void operator() (LinearOperatorBase &Linop, const Field &in, Field &out) = 0; }; + template class HermitianOperatorFunction { + public: + virtual void operator() (HermitianOperatorBase &Linop, const Field &in, Field &out) = 0; + }; // FIXME : To think about