3#include "gauge/stout_smear.h"
18#include "parameters.h"
19#include "polyakov_surface.h"
20#include "twist_specific_methods.h"
37template <
typename group>
41 auto plaq_z = measure_plaq_with_z(
44 print_formatted_numbers(plaq_z,
"plaquette z",
false,
true);
45 hila::out0 <<
"plaquette: " << plaq_z.back() <<
'\n';
55template <
typename group>
57 const parameters &p) {
59 auto plaq = measure_plaq_with_z(
62 print_formatted_numbers(plaq,
"plaquette",
false,
true);
66template <
typename group>
68 auto poly_z = measure_polyakov_with_z(U);
69 auto poly_abs = measure_polyakov_with_z_abs(U);
71 print_formatted_numbers(poly_z,
"polyakov z",
false,
true);
72 print_formatted_numbers(poly_abs,
"polyakov abs z",
false,
true);
73 hila::out0 <<
"polyakov: " << poly_z.back() <<
'\n';
74 hila::out0 <<
"polyakov abs: " << poly_abs.back() <<
'\n';
77template <
typename group>
79 const parameters &p) {
80 auto poly = measure_polyakov_with_z(U);
81 auto poly_abs = measure_polyakov_with_z_abs(U);
83 print_formatted_numbers(poly,
"polyakov z",
false,
true);
84 print_formatted_numbers(poly_abs,
"polyakov abs z",
false,
true);
85 hila::out0 <<
"polyakov: " << poly.back() <<
'\n';
86 hila::out0 <<
"polyakov abs: " << poly_abs.back() <<
'\n';
103template <
typename group>
113template <
typename group>
122 auto OP = measure_polyakov_with_z_abs(U);
123 auto OP_old = measure_polyakov_with_z_abs(U_old);
126 if (!hila::muca::accept_reject(OP_old.back(), OP.back())) {
136 auto OP = measure_plaq_with_z(U, p.twist_coeff);
137 auto OP_old = measure_plaq_with_z(U_old, p.twist_coeff);
140 if (!hila::muca::accept_reject(OP_old.back(), OP.back())) {
161template <
typename group>
171 staples_timer.start();
174 staplesum_twist(U, staples, d, p.twist_coeff, par);
176 staples_timer.stop();
187 onsites(par) {
suN_heatbath(U[d][X], staples[X], p.beta); }
202template <
typename group>
205 for (
int n = 0; n < p.n_update; n++) {
206 for (
int i = 0; i < p.n_overrelax; i++) {
225template <
typename group>
227 for (
int n = 0; n < p.n_update; n++) {
228 for (
int i = 0; i < p.n_overrelax; i++) {
229 update_multicanonical(U, p,
true);
232 update_multicanonical(U, p,
false);
244 const parameters &p) {
247 bool iterate_status =
true;
248 while (iterate_status) {
249 for (
int i = 0; i < p.muca_updates; i++) {
250 do_trajectory_multicanonical(U, p);
253 auto OP = measure_plaq_with_z(U, p.twist_coeff);
254 auto P = measure_polyakov_with_z(U);
255 hila::out0 <<
"Order parameter: " << OP.back() << std::endl;
256 hila::out0 <<
"polyakov muca: " << P.back() << std::endl;
257 iterate_status = hila::muca::iterate_weights(OP.back());
259 auto OP = measure_polyakov_with_z_abs(U);
260 auto Plaq = measure_plaq_with_z(U, p.twist_coeff);
261 auto Poly = measure_polyakov_with_z(U);
262 hila::out0 <<
"Order parameter: " <<
abs(OP.back()) << std::endl;
263 hila::out0 <<
"plaquette muca: "<< Plaq.back() << std::endl;
264 hila::out0 <<
"polyakov muca: "<< Poly.back() << std::endl;
266 iterate_status = hila::muca::iterate_weights(OP.back());
272int main(
int argc,
char **argv) {
275 hila::cmdline.add_flag(
"-beta",
"Temparature");
276 hila::cmdline.add_flag(
"-twist",
"Twist coefficient");
277 hila::cmdline.add_flag(
"-config",
"Config filename");
278 hila::cmdline.add_flag(
"-ntraj",
"Number of trajectories");
279 hila::cmdline.add_flag(
"-lsize",
"Lattice size");
280 hila::cmdline.add_flag(
"-out-folder",
"Output folder");
287 lsize = par.get(
"lattice size");
289 p.beta = par.get(
"beta");
293 p.deltab = par.get(
"delta beta fraction");
295 p.n_overrelax = par.get(
"overrelax steps");
296 p.n_update = par.get(
"updates in trajectory");
297 p.n_trajectories = par.get(
"trajectories");
298 p.n_thermal = par.get(
"thermalization");
301 long seed = par.get(
"random seed");
303 p.n_save = par.get(
"traj/saved");
305 p.config_file = par.get(
"config name");
306 p.twist_coeff = par.get(
"twist coeff");
308 if (par.get_item(
"updates/profile meas", {
"off",
"%i"}) == 1) {
309 p.n_profile = par.get();
314 p.n_smear = par.get(
"smearing steps");
315 p.smear_coeff = par.get(
"smear coefficient");
316 p.z_smear = par.get(
"z smearing steps");
317 p.n_surface = par.get(
"traj/surface");
318 p.n_dump_polyakov = par.get(
"traj/polyakov dump");
320 if (p.n_smear.size() != p.z_smear.size()) {
321 hila::out0 <<
"Error in input file: number of values in 'smearing "
328 p.n_dump_polyakov = 0;
330 p.muca_action = par.get(
"muca_action");
331 p.muca_poly = par.get(
"muca_poly");
332 p.muca_updates = par.get(
"muca_updates");
333 p.measure_surface = par.get(
"measure_surface");
334 std::string initial_state = par.get(
"initial_state");
338 if (hila::cmdline.flag_present(
"-beta")) {
339 p.beta = hila::cmdline.get_double(
"-beta");
342 if (hila::cmdline.flag_present(
"-twist")) {
343 p.twist_coeff = hila::cmdline.get_int(
"-twist");
344 hila::out0 <<
"twist coeff " << p.twist_coeff << std::endl;
346 if (hila::cmdline.flag_present(
"-config")) {
347 p.config_file = hila::cmdline.get_string(
"-config");
349 if (hila::cmdline.flag_present(
"-ntraj")) {
350 p.n_trajectories = hila::cmdline.get_int(
"-ntraj");
351 hila::out0 <<
"Trajectories " << p.twist_coeff << std::endl;
353 if (hila::cmdline.flag_present(
"-lsize")) {
354 for (
int i = 0; i < NDIM; i++) {
355 lsize[i] = hila::cmdline.get_int(
"-lsize", i);
358 for (
int i = 0; i < NDIM; i++) {
363 if (hila::cmdline.flag_present(
"-out-folder")) {
364 p.out_folder = hila::cmdline.get_string(
"-out-folder");
370 lattice.
setup(lsize);
375 int start_traj = -p.n_thermal;
386 if (initial_state ==
"cold") {
387 foralldir(d) onsites(
ALL) { U[d][X].gaussian_random(); }
388 }
else if (initial_state ==
"hot") {
390 }
else if (initial_state ==
"both") {
399 if (p.muca_action || p.muca_poly) {
402 MFile.open(
"muca_measurements", std::ios_base::app);
403 iterate_weights_multicanonical(U, p);
412 do_trajectory_ptr = do_trajectory_multicanonical<mygroup>;
413 measure_plaquette_ptr = measure_plaq_multicanonical<mygroup>;
414 measure_polyakov_ptr = measure_poly<mygroup>;
415 }
else if (p.muca_poly) {
416 do_trajectory_ptr = do_trajectory_multicanonical<mygroup>;
417 measure_plaquette_ptr = measure_plaq<mygroup>;
418 measure_polyakov_ptr = measure_poly_multicanonical<mygroup>;
420 do_trajectory_ptr = do_trajectory<mygroup>;
421 measure_plaquette_ptr = measure_plaq<mygroup>;
422 measure_polyakov_ptr = measure_poly<mygroup>;
425 for (
int trajectory = start_traj; trajectory < p.n_trajectories;
429 update_timer.start();
432 do_trajectory_ptr(U, p);
435 hila::synchronize_threads();
439 if (trajectory >= 0) {
440 measure_timer.start();
442 measure_plaquette_ptr(U, p);
444 measure_polyakov_ptr(U, p);
446 if (p.measure_surface)
447 measure_polyakov_surface(U, p, trajectory);
451 measure_timer.stop();
454 if (p.n_save > 0 && (trajectory + 1) % p.n_save == 0) {
455 checkpoint(U, trajectory, p);
The field class implements the standard methods for accessing Fields. Hilapp replaces the parity acce...
void reunitarize_gauge()
Reunitarize Gauge Field consisting of matrices.
static constexpr int size()
Returns size of Vector or square Matrix.
void setup(const CoordinateVector &siz)
General lattice setup.
T abs(const Complex< T > &a)
Return absolute value of Complex number.
Parity
Parity enum with values EVEN, ODD, ALL; refers to parity of the site. Parity of site (x,...
constexpr Parity EVEN
bit pattern: 001
#define foralldir(d)
Macro to loop over (all) Direction(s)
constexpr Parity ODD
bit pattern: 010
Direction
Enumerator for direction that assigns integer to direction to be interpreted as unit vector.
constexpr Parity ALL
bit pattern: 011
void write_weight_function(string W_function_filename)
Reads the precomputed weight function from run_parameters struct and saves it into a file.
void initialise(const string wfile_name)
Loads parameters and weights for the multicanonical computation.
double weight(double OP)
process 0 interface to "weight function" for the user accessing the weights.
Header for model agnostic implementation of various multicanonical (muca) methods.
std::ostream out0
This writes output only from main process (node 0)
void initialize(int argc, char **argv)
Initial setup routines.
void seed_random(uint64_t seed, bool device_rng=true)
Seed random generators with 64-bit unsigned value. On MPI shuffles the seed so that different MPI ran...
bool is_rng_seeded()
Check if RNG is seeded already.
void finishrun()
Normal, controlled exit - all nodes must call this. Prints timing information and information about c...
void terminate(int status)
void update(GaugeField< group > &U, const parameters &p, bool relax)
Wrapper update function.
void update_parity_dir(GaugeField< group > &U, const parameters &p, Parity par, Direction d, bool relax)
Wrapper function to updated GaugeField per direction.
void do_trajectory(GaugeField< group > &U, const parameters &p)
Evolve gauge field.
double suN_heatbath(SU< N, T > &U, const SU< N, T > &staple, double beta)
heatbath
void suN_overrelax(SU< N, T > &U, const SU< N, T > &staple)
Overrelaxation using SU(2) subgroups