mirror of
https://github.com/paboyle/Grid.git
synced 2025-06-13 04:37:05 +01:00
Merge branch 'feature/distil' of github.com:mmphys/Grid into feature/distil
This commit is contained in:
@ -151,7 +151,7 @@ void TBContraction<FImpl>::execute(void)
|
||||
Gamma::Algebra::SigmaYT, // C = i gamma_2 gamma_4
|
||||
Gamma::Algebra::GammaYGamma5, // i gamma_4 C gamma_5 = i gamma_2 gamma_5
|
||||
};
|
||||
std::vector<Complex> factor23 = {(0.,-1.),(0.,1.),(0.,1.)};
|
||||
//std::vector<Complex> factor23 = {(0.,-1.),(0.,1.),(0.,1.)};
|
||||
|
||||
for (int i1=0 ; i1 < N_1 ; i1++){
|
||||
for (int i2=0 ; i2 < N_2 ; i2++){
|
||||
|
@ -35,7 +35,7 @@
|
||||
#include <Hadrons/ModuleFactory.hpp>
|
||||
|
||||
/******************************************************************************
|
||||
Needed to make sure envCreate() (see Hadrons) works with specialisations
|
||||
Needed to make sure envCreate() (see Hadrons) work with specialisations
|
||||
with more than one parameter, eg obj<T1 COMMA T2>
|
||||
I imagine this exists already?
|
||||
******************************************************************************/
|
||||
@ -191,8 +191,8 @@ public:
|
||||
OperatorFunction<Field> & _poly;
|
||||
LinearOperatorBase<Field> &_Linop;
|
||||
|
||||
LinOpPeardonNablaHerm(OperatorFunction<Field> & poly,LinearOperatorBase<Field>& linop) : _poly(poly), _Linop(linop) {
|
||||
}
|
||||
LinOpPeardonNablaHerm(OperatorFunction<Field> & poly,LinearOperatorBase<Field>& linop)
|
||||
: _poly{poly}, _Linop{linop} {}
|
||||
|
||||
void operator()(const Field& in, Field& out) {
|
||||
_poly(_Linop,in,out);
|
||||
|
Reference in New Issue
Block a user