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

Namesapce

This commit is contained in:
paboyle 2018-01-14 22:48:08 +00:00
parent 3e139b52d3
commit 61e9a33777

View File

@ -26,12 +26,11 @@ with this program; if not, write to the Free Software Foundation, Inc.,
See the full license in the file "LICENSE" in the top level distribution
directory
*************************************************************************************/
/* END LEGAL */
/* END LEGAL */
#ifndef QCD_PSEUDOFERMION_ONE_FLAVOUR_EVEN_ODD_RATIONAL_H
#define QCD_PSEUDOFERMION_ONE_FLAVOUR_EVEN_ODD_RATIONAL_H
namespace Grid {
namespace QCD {
NAMESPACE_BEGIN(Grid);
///////////////////////////////////////
// One flavour rational
@ -46,7 +45,7 @@ namespace QCD {
template <class Impl>
class OneFlavourEvenOddRationalPseudoFermionAction
: public Action<typename Impl::GaugeField> {
public:
public:
INHERIT_IMPL_TYPES(Impl);
typedef OneFlavourRationalParams Params;
@ -57,7 +56,7 @@ class OneFlavourEvenOddRationalPseudoFermionAction
MultiShiftFunction PowerQuarter;
MultiShiftFunction PowerNegQuarter;
private:
private:
FermionOperator<Impl> &FermOp; // the basic operator
// NOT using "Nroots"; IroIro is -- perhaps later, but this wasn't good for us
@ -67,7 +66,7 @@ class OneFlavourEvenOddRationalPseudoFermionAction
FermionField PhiEven; // the pseudo fermion field for this trajectory
FermionField PhiOdd; // the pseudo fermion field for this trajectory
public:
public:
OneFlavourEvenOddRationalPseudoFermionAction(FermionOperator<Impl> &Op,
Params &p)
: FermOp(Op),
@ -222,7 +221,7 @@ class OneFlavourEvenOddRationalPseudoFermionAction
// dSdU = Ta(dSdU);
};
};
}
}
NAMESPACE_END(Grid);
#endif