1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-19 08:17:05 +01:00

first complete version of IRBL; requires practical test and clean up

This commit is contained in:
Yong-Chull Jang
2017-12-21 23:13:39 -05:00
parent fe406e230d
commit 89c4e9b168
3 changed files with 24 additions and 21 deletions

View File

@ -77,10 +77,10 @@ int main (int argc, char ** argv)
SchurDiagTwoOperator<GparityMobiusFermionR,FermionField> HermOp(Ddwf);
// SchurDiagMooeeOperator<DomainWallFermionR,LatticeFermion> HermOp(Ddwf);
const int Nstop = 50;
const int Nstop = 120;
const int Nu = 1;
const int Nk = 200;
const int Np = 200;
const int Nk = 240;
const int Np = 240;
const int Nm = Nk+Np;
const int MaxIt= 10;
RealD resid = 1.0e-8;

View File

@ -75,11 +75,11 @@ int main (int argc, char ** argv)
SchurDiagTwoOperator<GparityMobiusFermionR,FermionField> HermOp(Ddwf);
// SchurDiagMooeeOperator<DomainWallFermionR,LatticeFermion> HermOp(Ddwf);
const int Nstop = 50;
const int Nk = 200;
const int Np = 200;
const int Nstop = 120;
const int Nk = 240;
const int Np = 240;
const int Nm = Nk+Np;
const int MaxIt= 100;
const int MaxIt= 10;
RealD resid = 1.0e-8;
std::vector<double> Coeffs { 0.,-1.};