19 const std::string
test_name =
"sample_HMC_Wilson_Leapfrog_Nf2";
20 const std::string parameter_file =
"sample_HMC_Wilson_Leapfrog_Nf2.yaml";
54 const string str_gconf_status = params_test.
get_string(
"gauge_config_status");
55 const string str_gconf_read = params_test.
get_string(
"gauge_config_type_input");
56 const string readfile = params_test.
get_string(
"config_filename_input");
57 const string str_gconf_write = params_test.
get_string(
"gauge_config_type_output");
58 const string writefile = params_test.
get_string(
"config_filename_output");
59 const string str_rand_type = params_test.
get_string(
"random_number_type");
60 const string rand_readfile = params_test.
get_string(
"rand_filename_input");
61 const string rand_writefile = params_test.
get_string(
"rand_filename_output");
62 const unsigned long seed = params_test.
get_unsigned_long(
"seed_for_random_number");
63 int i_conf = params_test.
get_int(
"trajectory_number");
64 const int Ntraj = params_test.
get_int(
"trajectory_number_step");
65 const int i_save_conf = params_test.
get_int(
"save_config_interval");
66 const string str_vlevel = params_test.
get_string(
"verbose_level");
71 const string str_action_G_type = params_action_G.
get_string(
"action_type");
72 const string str_fopr_type = params_fopr.
get_string(
"fermion_type");
73 const string str_gmset_type = params_fopr.
get_string(
"gamma_matrix_type");
74 const string str_proj_type = params_proj.
get_string(
"projection_type");
75 const string str_smear_type = params_smear.
get_string(
"smear_type");
77 const string str_solver_MD_type = params_solver_MD.
get_string(
"solver_type");
78 const string str_solver_H_type = params_solver_H.
get_string(
"solver_type");
83 vout.
general(
vl,
" gconf_status = %s\n", str_gconf_status.c_str());
84 vout.
general(
vl,
" gconf_read = %s\n", str_gconf_read.c_str());
86 vout.
general(
vl,
" gconf_write = %s\n", str_gconf_write.c_str());
89 vout.
general(
vl,
" rand_readfile = %s\n", rand_readfile.c_str());
90 vout.
general(
vl,
" rand_writefile = %s\n", rand_writefile.c_str());
96 vout.
general(
vl,
" gmset_type = %s\n", str_gmset_type.c_str());
98 vout.
general(
vl,
" smear_type = %s\n", str_smear_type.c_str());
99 vout.
general(
vl,
" solver_MD_type = %s\n", str_solver_MD_type.c_str());
100 vout.
general(
vl,
" solver_H_type = %s\n", str_solver_H_type.c_str());
116 if (str_proj_type ==
"Stout_SU3") {
130 if (str_gconf_status ==
"Continue") {
133 }
else if (str_gconf_status ==
"Cold_start") {
135 }
else if (str_gconf_status ==
"Hot_start") {
138 vout.
crucial(
vl,
"Error at %s: unsupported gconf status \"%s\"\n",
test_name.c_str(), str_gconf_status.c_str());
145 unique_ptr<Action> action_G(Action::New(str_action_G_type, params_action_G));
148 unique_ptr<Fopr> fopr(Fopr::New(str_fopr_type, params_fopr));
154 unique_ptr<Projection> proj(Projection::New(str_proj_type, params_proj));
155 unique_ptr<Smear> smear(Smear::New(str_smear_type, proj.get(), params_smear));
158 unique_ptr<ForceSmear> force_smear(ForceSmear::New(str_smear_type, proj.get(), params_smear));
160 unique_ptr<Director_Smear> dr_smear(
new Director_Smear(smear.get(), params_dr_smear));
162 unique_ptr<Fopr> fopr_smear(Fopr::New(
"Smeared", fopr.get(), dr_smear.get()));
164 unique_ptr<Force> force_fopr_smear(
new Force_F_Smeared(force_fopr.get(), force_smear.get(), dr_smear.get()));
167 unique_ptr<Solver> solver_MD(Solver::New(str_solver_MD_type, fopr_smear.get(), params_solver_MD));
170 unique_ptr<Solver> solver_H(Solver::New(str_solver_H_type, fopr_smear.get(), params_solver_H));
173 unique_ptr<Action> action_F(
new Action_F_Standard_lex(fopr_smear.get(), force_fopr_smear.get(), fprop_MD.get(), fprop_H.get()));
178 actions.
append(0, action_F.get());
179 actions.
append(0, action_G.get());
181 std::vector<Director *> directors(1);
182 directors[0] =
static_cast<Director *
>(dr_smear.get());
184 unique_ptr<RandomNumbers> rand;
185 if (rand_readfile ==
"None") {
193 HMC_Leapfrog hmc(actions, directors, rand.get(), params_hmc);
204 for (
int traj = 0; traj < Ntraj; ++traj) {
210 if ((i_conf + traj + 1) % i_save_conf == 0) {
235 int main(
int argc,
char *argv[])