HILA
Loading...
Searching...
No Matches
src/parameters.h
1#ifndef PARAMETERS_H
2#define PARAMETERS_H
3
5
6enum class poly_limit { OFF, RANGE, PARABOLIC };
7
8
9// define a struct to hold the input parameters: this
10// makes it simpler to pass the values around
11struct parameters {
12 double beta;
13 double deltab;
14 int n_overrelax;
15 int n_update;
16 int n_trajectories;
17 int n_thermal;
18 int n_save;
19 int n_profile;
20 std::string config_file;
21 double time_offset;
22 poly_limit polyakov_pot;
23 double poly_min, poly_max, poly_m2;
24 std::vector<int> n_smear;
25 double smear_coeff;
26 std::vector<int> z_smear;
27 int n_surface;
28 int n_dump_polyakov;
29};
30
31#endif
Class for SU(N) matrix.
Definition sun_matrix.h:37