1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-14 13:57:07 +01:00

Still debugging eigenvector parameters

This commit is contained in:
2019-01-24 13:26:05 +00:00
parent 00b0f75b0d
commit cf85f0388d
2 changed files with 40 additions and 6 deletions

View File

@ -233,7 +233,7 @@ void test_LapEvec(Application &application)
globalPar.runId = "test";
application.setPar(globalPar);
// gauge field
application.createModule<MGauge::Unit>(szGaugeName);
application.createModule<MGauge::Random>(szGaugeName);
// Now make an instance of the LapEvec object
MDistil::LapEvecPar p;
p.gauge = szGaugeName;
@ -250,6 +250,8 @@ void test_LapEvec(Application &application)
p.Lanczos.Nvec = 5;
p.Lanczos.Nk = 6;
p.Lanczos.Np = 2;
p.Lanczos.MaxIt = 1000;
p.Lanczos.resid = 1e-2;
application.createModule<MDistil::LapEvec>("LapEvec",p);
}