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

Checked the hermiticity of the op in derivative, ok

Still CG fails to converge
This commit is contained in:
Guido Cossu
2016-07-31 12:37:33 +01:00
parent 089f0ab582
commit 49b5c49851
6 changed files with 47 additions and 38 deletions

View File

@ -149,7 +149,7 @@ class Integrator {
}
// Force from the other representations
//as[level].apply(update_P_hireps, Representations, Mom, U, ep);
as[level].apply(update_P_hireps, Representations, Mom, U, ep);
}
void update_U(GaugeField& U, double ep) {
@ -167,13 +167,12 @@ class Integrator {
auto Umu = PeekIndex<LorentzIndex>(U, mu);
auto Pmu = PeekIndex<LorentzIndex>(Mom, mu);
Umu = expMat(Pmu, ep, Params.Nexp) * Umu;
ProjectOnGroup(Umu);
PokeIndex<LorentzIndex>(U, Umu, mu);
PokeIndex<LorentzIndex>(U, ProjectOnGroup(Umu), mu);
}
// Update the smeared fields, can be implemented as observer
Smearer.set_GaugeField(U);
// Update the higher representations fields
//Representations.update(U); // void functions if fundamental representation
Representations.update(U); // void functions if fundamental representation
}
virtual void step(GaugeField& U, int level, int first, int last) = 0;
@ -217,7 +216,7 @@ class Integrator {
// of the Metropolis
Smearer.set_GaugeField(U);
// Set the (eventual) representations gauge fields
//Representations.update(U);
Representations.update(U);
// The Smearer is attached to a pointer of the gauge field
// automatically gets the correct field
@ -232,7 +231,7 @@ class Integrator {
}
// Refresh the higher representation actions
//as[level].apply(refresh_hireps, Representations, pRNG);
as[level].apply(refresh_hireps, Representations, pRNG);
}
}
@ -281,7 +280,7 @@ class Integrator {
<< actionID << " H = " << Hterm << std::endl;
H += Hterm;
}
//as[level].apply(S_hireps, Representations, level, H);
as[level].apply(S_hireps, Representations, level, H);
}
return H;