mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-28 14:45:56 +01:00
Think this should move to the algorithms directory
This commit is contained in:
parent
b460cd3ef1
commit
75f3062a80
@ -1,4 +1,4 @@
|
|||||||
/*************************************************************************************
|
/*************************************************************************************
|
||||||
|
|
||||||
Grid physics library, www.github.com/paboyle/Grid
|
Grid physics library, www.github.com/paboyle/Grid
|
||||||
|
|
||||||
@ -24,17 +24,17 @@ Author: Peter Boyle <paboyle@ph.ed.ac.uk>
|
|||||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
|
||||||
See the full license in the file "LICENSE" in the top level distribution directory
|
See the full license in the file "LICENSE" in the top level distribution directory
|
||||||
*************************************************************************************/
|
*************************************************************************************/
|
||||||
/* END LEGAL */
|
/* END LEGAL */
|
||||||
#ifndef _SCHUR_DIAG_TWO_KAPPA_H
|
#ifndef _SCHUR_DIAG_TWO_KAPPA_H
|
||||||
#define _SCHUR_DIAG_TWO_KAPPA_H
|
#define _SCHUR_DIAG_TWO_KAPPA_H
|
||||||
|
|
||||||
namespace Grid {
|
NAMESPACE_BEGIN(Grid);
|
||||||
|
|
||||||
// This is specific to (Z)mobius fermions
|
// This is specific to (Z)mobius fermions
|
||||||
template<class Matrix, class Field>
|
template<class Matrix, class Field>
|
||||||
class KappaSimilarityTransform {
|
class KappaSimilarityTransform {
|
||||||
public:
|
public:
|
||||||
INHERIT_IMPL_TYPES(Matrix);
|
INHERIT_IMPL_TYPES(Matrix);
|
||||||
std::vector<Coeff_t> kappa, kappaDag, kappaInv, kappaInvDag;
|
std::vector<Coeff_t> kappa, kappaDag, kappaInv, kappaInvDag;
|
||||||
|
|
||||||
@ -70,11 +70,11 @@ namespace Grid {
|
|||||||
virtual RealD MInv (const Field& in, Field& out) { return sscale_norm(in,out,&kappaInv[0]);}
|
virtual RealD MInv (const Field& in, Field& out) { return sscale_norm(in,out,&kappaInv[0]);}
|
||||||
virtual RealD MInvDag (const Field& in, Field& out) { return sscale_norm(in,out,&kappaInvDag[0]);}
|
virtual RealD MInvDag (const Field& in, Field& out) { return sscale_norm(in,out,&kappaInvDag[0]);}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
template<class Matrix,class Field>
|
template<class Matrix,class Field>
|
||||||
class SchurDiagTwoKappaOperator : public SchurOperatorBase<Field> {
|
class SchurDiagTwoKappaOperator : public SchurOperatorBase<Field> {
|
||||||
public:
|
public:
|
||||||
KappaSimilarityTransform<Matrix, Field> _S;
|
KappaSimilarityTransform<Matrix, Field> _S;
|
||||||
SchurDiagTwoOperator<Matrix, Field> _Mat;
|
SchurDiagTwoOperator<Matrix, Field> _Mat;
|
||||||
|
|
||||||
@ -95,8 +95,8 @@ namespace Grid {
|
|||||||
_Mat.MpcDag(out,tmp);
|
_Mat.MpcDag(out,tmp);
|
||||||
return _S.MInvDag(tmp,out);
|
return _S.MInvDag(tmp,out);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
NAMESPACE_END(Grid);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user