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

Now the gauge implementation has to take care of the Nexp

This commit is contained in:
Guido Cossu
2016-10-03 16:20:06 +01:00
parent 257f69f931
commit cfbc1a26b8
2 changed files with 8 additions and 6 deletions

View File

@ -155,7 +155,8 @@ class Integrator {
<< " dt " << ep << " : t_U " << t_U << std::endl;
}
void update_U(MomentaField& Mom, Field& U, double ep) {
FieldImplementation::update_field(Mom, U, ep, Params.Nexp);
// exponential of Mom*U in the gauge fields case
FieldImplementation::update_field(Mom, U, ep);
// Update the smeared fields, can be implemented as observer
Smearer.set_Field(U);