mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 15:55:37 +00:00
a842a6c94d
Moving param structs into a single header for later connection to file I/O using macromagic.h
27 lines
587 B
C++
27 lines
587 B
C++
#ifndef GRID_QCD_ACTION_PARAMS_H
|
|
#define GRID_QCD_ACTION_PARAMS_H
|
|
|
|
namespace Grid {
|
|
namespace QCD {
|
|
|
|
// These can move into a params header and be given MacroMagic serialisation
|
|
struct GparityWilsonImplParams {
|
|
std::vector<int> twists;
|
|
};
|
|
|
|
struct WilsonImplParams { };
|
|
|
|
struct OneFlavourRationalParams {
|
|
RealD lo;
|
|
RealD hi;
|
|
int precision=64;
|
|
int degree=10;
|
|
RealD tolerance; // Vector?
|
|
RealD MaxIter; // Vector?
|
|
OneFlavourRationalParams (RealD lo,RealD hi,int precision=64,int degree = 10);
|
|
};
|
|
|
|
}}
|
|
|
|
#endif
|