mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 03:05:55 +01:00
Cold or hot must support any precisoin
This commit is contained in:
parent
b573d1f35a
commit
8535d433a7
@ -617,22 +617,33 @@ Note that in step D setting B ~ X - A and using B in place of A in step E will g
|
|||||||
PokeIndex<LorentzIndex>(out,Umu,mu);
|
PokeIndex<LorentzIndex>(out,Umu,mu);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
static void TepidConfiguration(GridParallelRNG &pRNG,LatticeGaugeField &out){
|
template<typename GaugeField>
|
||||||
LatticeMatrix Umu(out._grid);
|
static void TepidConfiguration(GridParallelRNG &pRNG,GaugeField &out){
|
||||||
|
typedef typename GaugeField::vector_type vector_type;
|
||||||
|
typedef iSUnMatrix<vector_type> vMatrixType;
|
||||||
|
typedef Lattice<vMatrixType> LatticeMatrixType;
|
||||||
|
|
||||||
|
LatticeMatrixType Umu(out._grid);
|
||||||
for(int mu=0;mu<Nd;mu++){
|
for(int mu=0;mu<Nd;mu++){
|
||||||
LieRandomize(pRNG,Umu,0.01);
|
LieRandomize(pRNG,Umu,0.01);
|
||||||
PokeIndex<LorentzIndex>(out,Umu,mu);
|
PokeIndex<LorentzIndex>(out,Umu,mu);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
static void ColdConfiguration(GridParallelRNG &pRNG,LatticeGaugeField &out){
|
template<typename GaugeField>
|
||||||
LatticeMatrix Umu(out._grid);
|
static void ColdConfiguration(GridParallelRNG &pRNG,GaugeField &out){
|
||||||
|
typedef typename GaugeField::vector_type vector_type;
|
||||||
|
typedef iSUnMatrix<vector_type> vMatrixType;
|
||||||
|
typedef Lattice<vMatrixType> LatticeMatrixType;
|
||||||
|
|
||||||
|
LatticeMatrixType Umu(out._grid);
|
||||||
Umu=1.0;
|
Umu=1.0;
|
||||||
for(int mu=0;mu<Nd;mu++){
|
for(int mu=0;mu<Nd;mu++){
|
||||||
PokeIndex<LorentzIndex>(out,Umu,mu);
|
PokeIndex<LorentzIndex>(out,Umu,mu);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void taProj( const LatticeMatrix &in, LatticeMatrix &out){
|
template<typename LatticeMatrixType>
|
||||||
|
static void taProj( const LatticeMatrixType &in, LatticeMatrixType &out){
|
||||||
out = Ta(in);
|
out = Ta(in);
|
||||||
}
|
}
|
||||||
template<typename LatticeMatrixType>
|
template<typename LatticeMatrixType>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user