mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 15:55:37 +00:00
808f5820fa
Fixed bug in momenta generation
25 lines
423 B
C++
25 lines
423 B
C++
#include <Grid.h>
|
|
|
|
namespace Grid{
|
|
namespace QCD{
|
|
|
|
HMCparameters::HMCparameters(){
|
|
// FIXME fill this constructor now just default values
|
|
|
|
////////////////////////////// Default values
|
|
Nsweeps = 100;
|
|
TotalSweeps = 20;
|
|
ThermalizationSteps = 20;
|
|
StartingConfig = 0;
|
|
SaveInterval = 1;
|
|
Filename_prefix = "Conf_";
|
|
/////////////////////////////////
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|