1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-10 07:55:35 +00:00

Fixing compilation error in FundtoHirep

This commit is contained in:
Guido Cossu 2018-01-30 06:04:30 +01:00
parent fb24e3a7d2
commit cd44e851f1

View File

@ -57,7 +57,7 @@ std::vector<std::string> TFundtoHirep<Rep>::getOutput(void)
template <typename Rep> template <typename Rep>
void TFundtoHirep<Rep>::setup(void) void TFundtoHirep<Rep>::setup(void)
{ {
env().template registerLattice<typename Rep::LatticeField>(getName()); envCreateLat(typename Rep::LatticeField, getName());
} }
// execution /////////////////////////////////////////////////////////////////// // execution ///////////////////////////////////////////////////////////////////
@ -70,6 +70,6 @@ void TFundtoHirep<Rep>::execute(void)
Rep TargetRepresentation(U._grid); Rep TargetRepresentation(U._grid);
TargetRepresentation.update_representation(U); TargetRepresentation.update_representation(U);
typename Rep::LatticeField &URep = *env().template createLattice<typename Rep::LatticeField>(getName()); auto &URep = envGet(typename Rep::LatticeField, getName());
URep = TargetRepresentation.U; URep = TargetRepresentation.U;
} }