mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 15:55:37 +00:00
4fe110bd07
Still to check plaq and <e(-dH)>, but nevertheless this is progress
22 lines
418 B
C++
22 lines
418 B
C++
#include <Grid.h>
|
|
|
|
namespace Grid{
|
|
namespace QCD{
|
|
|
|
HMCparameters::HMCparameters(){
|
|
// FIXME fill this constructor now just default values
|
|
|
|
////////////////////////////// Default values
|
|
Nsweeps = 200;
|
|
TotalSweeps = 220;
|
|
ThermalizationSteps = 20;
|
|
StartingConfig = 0;
|
|
SaveInterval = 1;
|
|
Filename_prefix = "Conf_";
|
|
/////////////////////////////////
|
|
|
|
}
|
|
|
|
}
|
|
}
|