1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-20 08:46:55 +01:00

Current tests compiling

This commit is contained in:
Peter Boyle
2022-09-27 10:56:55 -04:00
parent 234324599e
commit af9ecb8b41
8 changed files with 50 additions and 32 deletions

View File

@ -37,7 +37,7 @@ int main(int argc, char **argv) {
// Typedefs to simplify notation
typedef WilsonImplR FermionImplPolicy;
typedef MobiusFermionR FermionAction;
typedef MobiusFermionD FermionAction;
typedef typename FermionAction::FermionField FermionField;
typedef Grid::XmlReader Serialiser;
@ -286,8 +286,8 @@ int main(int argc, char **argv) {
// ii) Break low bound, how rapidly?
// iii) Run lanczos
// iv) Have CG return spectral range estimate
FermionField vec(StrangeOp.FermionRedBlackGrid());
FermionField res(StrangeOp.FermionRedBlackGrid());
FermionField vec(StrangeOp.FermionDedBlackGrid());
FermionField res(StrangeOp.FermionDedBlackGrid());
vec = 1; // Fill with any old junk
std::cout << "Bounds check on strange operator mass "<< StrangeOp.Mass()<<std::endl;
@ -327,7 +327,7 @@ int main(int argc, char **argv) {
auto grid4= GridPtr;
auto rbgrid4= GridRBPtr;
auto rbgrid = StrangeOp.FermionRedBlackGrid();
auto rbgrid = StrangeOp.FermionDedBlackGrid();
auto grid = StrangeOp.FermionGrid();
if(1){
const int Nstop = 5;