1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-13 04:37:05 +01:00

Merge branch 'feature/distil' of https://github.com/mmphys/Grid into feature/distil

This commit is contained in:
ferben
2019-01-22 13:28:09 +00:00
2 changed files with 133 additions and 13 deletions

View File

@ -36,17 +36,34 @@
BEGIN_HADRONS_NAMESPACE
BEGIN_MODULE_NAMESPACE(MDistil)
/******************************************************************************
* LapEvec *
***** TEST *****
******************************************************************************/
BEGIN_MODULE_NAMESPACE(MDistil)
class LapEvecPar: Serializable
{
public:
GRID_SERIALIZABLE_CLASS_MEMBERS(LapEvecPar,
unsigned int, i);
GRID_SERIALIZABLE_CLASS_MEMBERS(LapEvecPar,
// StoutParameters,
int, steps,
double, parm,
// ChebyshevParameters,
int, PolyOrder,
double, alpha,
double, beta,
// LanczosParameters,
int, Nstart,
int, Nvec,
int, Nk,
int, Nm, // Not currently used
int, Np,
int, MaxIt,
int, MinRes,
double, resid);
};
template <typename FImpl>