Bridge++  Ver. 2.0.2
fopr_Wilson_impl.cpp
Go to the documentation of this file.
1 
15 
16 namespace Org {
17 #ifdef USE_FACTORY_AUTOREGISTER
18  namespace {
19  bool init = Fopr_Wilson::register_factory();
20  }
21 #endif
22 
23  const std::string Fopr_Wilson::class_name = "Org::Fopr_Wilson";
24 
25 //====================================================================
26  void Fopr_Wilson::init(const Parameters& params)
27  {
29 
31 
32  vout.general(m_vl, "%s: construction\n", class_name.c_str());
34 
35  std::string repr;
36  if (!params.fetch_string("gamma_matrix_type", repr)) {
37  m_repr = repr;
38  } else {
39  m_repr = "Dirac"; // default gamma-matrix type
40  vout.general(m_vl, "gamma_matrix_type is not given: defalt = %s\n",
41  m_repr.c_str());
42  }
43 
44  if ((m_repr != "Dirac") && (m_repr != "Chiral")) {
45  vout.crucial("Error at %s: unsupported gamma-matrix type: %s\n",
46  class_name.c_str(), m_repr.c_str());
47  exit(EXIT_FAILURE);
48  }
49 
50  setup();
51 
52  set_parameters(params);
53 
55  vout.general(m_vl, "%s: construction finished.\n",
56  class_name.c_str());
57  }
58 
59 
60 //====================================================================
61  void Fopr_Wilson::init(const std::string repr)
62  {
64 
66 
67  vout.general(m_vl, "%s: construction (obsolete)\n",
68  class_name.c_str());
70 
71  m_repr = repr;
72  vout.general(m_vl, "gamma-matrix type is set to %s\n",
73  m_repr.c_str());
74 
75  setup();
76 
78  vout.general(m_vl, "%s: construction finished.\n",
79  class_name.c_str());
80  }
81 
82 
83 //====================================================================
85  {
88  int Nin = 2 * m_Nc * m_Nd;
89 
92  m_boundary.resize(m_Ndim);
93 
94  m_U = 0;
95 
96  m_shift = new ShiftField_lex(Nin);
97 
98  m_GM.resize(m_Ndim + 1);
99 
100  GammaMatrixSet *gmset = GammaMatrixSet::New(m_repr);
101 
102  m_GM[0] = gmset->get_GM(GammaMatrixSet::GAMMA1);
103  m_GM[1] = gmset->get_GM(GammaMatrixSet::GAMMA2);
104  m_GM[2] = gmset->get_GM(GammaMatrixSet::GAMMA3);
105  m_GM[3] = gmset->get_GM(GammaMatrixSet::GAMMA4);
106  m_GM[4] = gmset->get_GM(GammaMatrixSet::GAMMA5);
107 
108  delete gmset;
109 
110  m_w1.reset(Nin, m_Nvol, 1);
111  m_w2.reset(Nin, m_Nvol, 1);
112  m_w3.reset(Nin, m_Nvol, 1);
113 
114  m_v1.reset(m_Nvol, 1); // Field_F
115  m_v2.reset(m_Nvol, 1); // Field_F
116  }
117 
118 
119 //====================================================================
121  {
122  delete m_shift;
123  }
124 
125 
126 //====================================================================
128  {
129  std::string vlevel;
130  if (!params.fetch_string("verbose_level", vlevel)) {
131  m_vl = vout.set_verbose_level(vlevel);
132  }
133 
134  //- fetch and check input parameters
135  double kappa;
136  std::vector<int> bc;
137 
138  int err = 0;
139  err += params.fetch_double("hopping_parameter", kappa);
140  err += params.fetch_int_vector("boundary_condition", bc);
141 
142  if (err) {
143  vout.crucial(m_vl, "Error at %s: input parameter not found.\n",
144  class_name.c_str());
145  exit(EXIT_FAILURE);
146  }
147 
148  set_parameters(kappa, bc);
149  }
150 
151 
152 //====================================================================
153  void Fopr_Wilson::set_parameters(const double kappa,
154  const std::vector<int> bc)
155  {
156  //- range check
157  // NB. kappa = 0 is allowed.
158  assert(bc.size() == m_Ndim);
159 
160  int ith = ThreadManager::get_thread_id();
161  if (ith == 0) {
162  m_kappa = kappa;
163  m_boundary = bc;
164  }
165 
166  //- print input parameters
167  vout.general(m_vl, "%s: input parameters\n", class_name.c_str());
168  vout.general(m_vl, " gamma matrix type = %s\n", m_repr.c_str());
169  vout.general(m_vl, " kappa = %12.8f\n", m_kappa);
170  for (int mu = 0; mu < m_Ndim; ++mu) {
171  vout.general(m_vl, " boundary[%d] = %2d\n", mu, m_boundary[mu]);
172  }
173  }
174 
175 
176 //====================================================================
178  {
179  params.set_double("hopping_parameter", m_kappa);
180  params.set_int_vector("boundary_condition", m_boundary);
181  params.set_string("gamma_matrix_type", m_repr);
182 
183  params.set_string("verbose_level", vout.get_verbose_level(m_vl));
184  }
185 
186 
187 //====================================================================
189  {
190 #pragma omp barrier
191 
192  int ith = ThreadManager::get_thread_id();
193  if (ith == 0) m_U = (Field_G *)U;
194 
195 #pragma omp barrier
196  }
197 
198 
199 //====================================================================
200  void Fopr_Wilson::set_mode(const std::string mode)
201  {
202 #pragma omp barrier
203  int ith = ThreadManager::get_thread_id();
204  if (ith == 0) m_mode = mode;
205 #pragma omp barrier
206  }
207 
208 
209 //====================================================================
210  void Fopr_Wilson::mult(Field& v, const Field& w)
211  {
212  if (m_mode == "D") {
213  D(v, w);
214  } else if (m_mode == "Ddag") {
215  Ddag(v, w);
216  } else if (m_mode == "DdagD") {
217  DdagD(v, w);
218  } else if (m_mode == "DDdag") {
219  DDdag(v, w);
220  } else if (m_mode == "H") {
221  H(v, w);
222  } else {
223  vout.crucial(m_vl, "Error at %s: input mode is undefined.\n",
224  class_name.c_str());
225  exit(EXIT_FAILURE);
226  }
227  }
228 
229 
230 //====================================================================
231  void Fopr_Wilson::mult_dag(Field& v, const Field& w)
232  {
233  if (m_mode == "D") {
234  Ddag(v, w);
235  } else if (m_mode == "Ddag") {
236  D(v, w);
237  } else if (m_mode == "DdagD") {
238  DdagD(v, w);
239  } else if (m_mode == "DDdag") {
240  DDdag(v, w);
241  } else if (m_mode == "H") {
242  H(v, w);
243  } else {
244  vout.crucial(m_vl, "Error at %s: input mode is undefined.\n",
245  class_name.c_str());
246  exit(EXIT_FAILURE);
247  }
248  }
249 
250 
251 //====================================================================
252  void Fopr_Wilson::mult(Field& v, const Field& w,
253  const std::string mode)
254  {
255  if (mode == "D") {
256  D(v, w);
257  } else if (mode == "Ddag") {
258  Ddag(v, w);
259  } else if (mode == "DdagD") {
260  DdagD(v, w);
261  } else if (mode == "DDdag") {
262  DDdag(v, w);
263  } else if (mode == "H") {
264  H(v, w);
265  } else {
266  vout.crucial(m_vl, "Error at %s: undefined mode: %s\n",
267  class_name.c_str(), mode.c_str());
268  exit(EXIT_FAILURE);
269  }
270  }
271 
272 
273 //====================================================================
274  void Fopr_Wilson::mult_dag(Field& v, const Field& w,
275  const std::string mode)
276  {
277  if (mode == "D") {
278  Ddag(v, w);
279  } else if (mode == "Ddag") {
280  D(v, w);
281  } else if (mode == "DdagD") {
282  DdagD(v, w);
283  } else if (mode == "DDdag") {
284  DDdag(v, w);
285  } else if (mode == "H") {
286  H(v, w);
287  } else {
288  vout.crucial(m_vl, "Error at %s: undefined mode: %s\n",
289  class_name.c_str(), mode.c_str());
290  exit(EXIT_FAILURE);
291  }
292  }
293 
294 
295 //====================================================================
296  void Fopr_Wilson::DdagD(Field& v, const Field& w)
297  {
298  D(m_w1, w);
299  mult_gm5(v, m_w1);
300  D(m_w1, v);
301  mult_gm5(v, m_w1);
302  }
303 
304 
305 //====================================================================
306  void Fopr_Wilson::Ddag(Field& v, const Field& w)
307  {
308  mult_gm5(v, w);
309  D(m_w1, v);
310  mult_gm5(v, m_w1);
311  }
312 
313 
314 //====================================================================
315  void Fopr_Wilson::DDdag(Field& v, const Field& w)
316  {
317  mult_gm5(m_w1, w);
318  D(v, m_w1);
319  mult_gm5(m_w1, v);
320  D(v, m_w1);
321  }
322 
323 
324 //====================================================================
325  void Fopr_Wilson::H(Field& v, const Field& w)
326  {
327  D(m_w1, w);
328  mult_gm5(v, m_w1);
329  }
330 
331 
332 //====================================================================
333  void Fopr_Wilson::D(Field& v, const Field& w)
334  {
335 #pragma omp barrier
336 
337  v.set(0.0);
338  for (int mu = 0; mu < m_Ndim; ++mu) {
339  mult_up(mu, v, w);
340  mult_dn(mu, v, w);
341  }
342  aypx(-m_kappa, v, w);
343 
344 #pragma omp barrier
345  }
346 
347 
348 //====================================================================
349  void Fopr_Wilson::D_ex(Field& v, const int ex1,
350  const Field& w, const int ex2)
351  {
352 #pragma omp barrier
353 
354  copy(m_w2, 0, w, ex2);
355  m_w3.set(0.0);
356 
357  for (int mu = 0; mu < m_Ndim; ++mu) {
358  mult_up(mu, m_w3, m_w2);
359  mult_dn(mu, m_w3, m_w2);
360  }
361 
362  aypx(-m_kappa, m_w3, m_w2);
363  copy(v, ex1, m_w3, 0);
364 
365 #pragma omp barrier
366  }
367 
368 
369 //====================================================================
370  void Fopr_Wilson::mult_gm5(Field& v, const Field& w)
371  {
372  int Nin = 2 * m_Nc * m_Nd;
373  assert(w.check_size(Nin, m_Nvol, 1));
374  assert(v.check_size(Nin, m_Nvol, 1));
375 
376 #pragma omp barrier
377 
378  copy(m_v1, w);
379  mult_GM(m_v2, m_GM[4], m_v1);
380  copy(v, m_v2);
381 
382 #pragma omp barrier
383  }
384 
385 
386 //====================================================================
387  void Fopr_Wilson::proj_chiral(Field& v, const int ex1,
388  const Field& w, const int ex2,
389  const int ipm)
390  {
391  assert(ipm == 1 || ipm == -1);
392 
393  double fpm = 1.0;
394  if (ipm == -1) fpm = -1.0;
395 
396  copy(m_w1, 0, w, ex2);
397  mult_gm5(m_w2, m_w1);
398  axpy(m_w1, ex1, fpm, m_w2, 0);
399  copy(v, ex1, m_w1, 0);
400 
401 #pragma omp barrier
402  }
403 
404 
405 //====================================================================
406  void Fopr_Wilson::mult_gm5p(const int mu, Field& v, const Field& w)
407  {
408  assert(mu >= 0 && mu < m_Ndim);
409 
410  m_w1.set(0.0);
411  mult_up(mu, m_w1, w);
412  mult_gm5(v, m_w1);
413  }
414 
415 
416 //====================================================================
417  void Fopr_Wilson::mult_up(const int mu, Field& v, const Field& w)
418  {
419 #pragma omp barrier
420 
421  for (int ex = 0; ex < w.nex(); ++ex) {
422  copy(m_v2, 0, w, ex);
423  m_shift->backward(m_v1, m_v2, m_boundary[mu], mu);
424  mult_Field_Gn(m_v2, 0, *m_U, mu, m_v1, 0);
425  mult_GMproj2(m_v1, -1, m_GM[mu], m_v2);
426  axpy(v, ex, 1.0, m_v1, 0);
427  }
428 #pragma omp barrier
429  }
430 
431 
432 //====================================================================
433  void Fopr_Wilson::mult_dn(const int mu, Field& v, const Field& w)
434  {
435 #pragma omp barrier
436 
437  for (int ex = 0; ex < w.nex(); ++ex) {
438  copy(m_v1, 0, w, ex);
439  mult_Field_Gd(m_v2, 0, *m_U, mu, m_v1, ex);
440  m_shift->forward(m_v1, m_v2, m_boundary[mu], mu);
441  mult_GMproj2(m_v2, 1, m_GM[mu], m_v1);
442  axpy(v, ex, 1.0, m_v2, 0);
443  }
444 #pragma omp barrier
445  }
446 
447 
448 //====================================================================
450  {
451  // This counting is based on the Org-implementation of ver.1.2.0.
452  // Flop count of mult_GMproj2 is different for upward and downward
453  // directions due to the implemetation in Field_F.cpp.
454  // The present counting is based on rev.1130. [10 Sep 2014 H.Matsufuru]
455 
456  const int Nvol = CommonParameters::Nvol();
457  const int NPE = CommonParameters::NPE();
458 
459  const int Nc = m_Nc;
460  const int Nd = m_Nd;
461 
462  int flop_per_site = Nc * Nd * 2 * 8 * (4 * Nc - 1); // #(mult_Field_Gn/d)
463 
464  flop_per_site += Nc * Nd * 2 * (4 * 3 + 4 * 2); // #(mult_GMproj2)
465  flop_per_site += Nc * Nd * 2 * 8; // #(addpart_ex)
466  flop_per_site += Nc * Nd * 2 * 2; // #(aypx(kappa))
467 
468  double gflop = flop_per_site * (Nvol * (NPE / 1.0e+9));
469 
470  if ((m_mode == "DdagD") || (m_mode == "DDdag")) {
471  gflop *= 2;
472  }
473 
474  return gflop;
475  }
476 
477 
478 //====================================================================
479 }
480 //============================================================END=====
GammaMatrixSet
Set of Gamma Matrices: basis class.
Definition: gammaMatrixSet.h:37
Org::Fopr_Wilson::m_v1
Field_F m_v1
Definition: fopr_Wilson_impl.h:63
Org::Fopr_Wilson::m_vl
Bridge::VerboseLevel m_vl
verbose level
Definition: fopr_Wilson_impl.h:49
GammaMatrixSet::GAMMA5
@ GAMMA5
Definition: gammaMatrixSet.h:48
Org::Fopr_Wilson::set_mode
void set_mode(const std::string mode)
setting the mode of multiplication if necessary. Default implementation here is just to avoid irrelev...
Definition: fopr_Wilson_impl.cpp:200
Parameters::set_string
void set_string(const string &key, const string &value)
Definition: parameters.cpp:39
Org::Fopr_Wilson::m_Nd
int m_Nd
Definition: fopr_Wilson_impl.h:54
Org::Fopr_Wilson::m_w1
Field m_w1
Definition: fopr_Wilson_impl.h:62
GammaMatrixSet::GAMMA1
@ GAMMA1
Definition: gammaMatrixSet.h:48
Org::Fopr_Wilson::m_Nvol
int m_Nvol
Definition: fopr_Wilson_impl.h:54
ShiftField_lex::forward
void forward(Field &, const Field &, const int mu)
Definition: shiftField_lex.cpp:79
Org::Fopr_Wilson::proj_chiral
void proj_chiral(Field &w, const int ex1, const Field &v, const int ex2, const int ipm)
Definition: fopr_Wilson_impl.cpp:387
CommonParameters::Ndim
static int Ndim()
Definition: commonParameters.h:117
mult_GM
void mult_GM(Field_F &y, const GammaMatrix &gm, const Field_F &x)
gamma matrix multiplication
Definition: field_F_imp.cpp:198
Field::set
void set(const int jin, const int site, const int jex, double v)
Definition: field.h:175
Parameters
Class for parameters.
Definition: parameters.h:46
Parameters::set_double
void set_double(const string &key, const double value)
Definition: parameters.cpp:33
Bridge::BridgeIO::decrease_indent
void decrease_indent()
Definition: bridgeIO.h:86
Bridge::BridgeIO::increase_indent
void increase_indent()
Definition: bridgeIO.h:85
Field::nex
int nex() const
Definition: field.h:128
Org::Fopr_Wilson::init
void init(const Parameters &params)
standard initial setup.
Definition: fopr_Wilson_impl.cpp:26
Org::Fopr_Wilson::m_v2
Field_F m_v2
working fields with spinor structure
Definition: fopr_Wilson_impl.h:63
Field::check_size
bool check_size(const int nin, const int nvol, const int nex) const
checking size parameters. [23 May 2016 H.Matsufuru]
Definition: field.h:135
CommonParameters::Nvol
static int Nvol()
Definition: commonParameters.h:109
aypx
void aypx(const double a, Field &y, const Field &x)
aypx(y, a, x): y := a * y + x
Definition: field.cpp:509
axpy
void axpy(Field &y, const double a, const Field &x)
axpy(y, a, x): y := a * x + y
Definition: field.cpp:380
Org::Fopr_Wilson::mult_up
void mult_up(const int mu, Field &v, const Field &w)
upward nearest neighbor hopping term.
Definition: fopr_Wilson_impl.cpp:417
mult_Field_Gd
void mult_Field_Gd(Field_F &y, const int ex, const Field_G &u, int ex1, const Field_F &x, int ex2)
Definition: field_F_imp.cpp:76
Org::Fopr_Wilson::m_Nc
int m_Nc
Definition: fopr_Wilson_impl.h:54
GammaMatrixSet::GAMMA3
@ GAMMA3
Definition: gammaMatrixSet.h:48
mult_GMproj2
void mult_GMproj2(Field_F &y, const int pm, const GammaMatrix &gm, const Field_F &x)
projection with gamma matrix: (1 \pm gamma)
Definition: field_F_imp.cpp:324
copy
void copy(Field &y, const Field &x)
copy(y, x): y = x
Definition: field.cpp:212
Org::Fopr_Wilson::m_Ndim
int m_Ndim
Definition: fopr_Wilson_impl.h:54
GammaMatrixSet::GAMMA4
@ GAMMA4
Definition: gammaMatrixSet.h:48
Org::Fopr_Wilson::get_parameters
void get_parameters(Parameters &params) const
gets parameters by a Parameter object: to be implemented in a subclass.
Definition: fopr_Wilson_impl.cpp:177
CommonParameters::Nc
static int Nc()
Definition: commonParameters.h:115
Org::Fopr_Wilson::setup
void setup()
common parts of setup.
Definition: fopr_Wilson_impl.cpp:84
Org::Fopr_Wilson::H
void H(Field &, const Field &)
Definition: fopr_Wilson_impl.cpp:325
Org::Fopr_Wilson::m_w2
Field m_w2
Definition: fopr_Wilson_impl.h:62
Org::Fopr_Wilson::Ddag
void Ddag(Field &, const Field &)
Definition: fopr_Wilson_impl.cpp:306
Parameters::fetch_int_vector
int fetch_int_vector(const string &key, vector< int > &value) const
Definition: parameters.cpp:429
Org::Fopr_Wilson::set_parameters
void set_parameters(const Parameters &params)
sets parameters by a Parameter object: to be implemented in a subclass.
Definition: fopr_Wilson_impl.cpp:127
Org::Fopr_Wilson::mult_gm5p
void mult_gm5p(const int mu, Field &v, const Field &w)
Definition: fopr_Wilson_impl.cpp:406
Org::Fopr_Wilson::m_kappa
double m_kappa
hopping parameter
Definition: fopr_Wilson_impl.h:46
Org::Fopr_Wilson::mult_dag
void mult_dag(Field &v, const Field &w)
hermitian conjugate of mult.
Definition: fopr_Wilson_impl.cpp:231
Org::Fopr_Wilson::m_shift
ShiftField_lex * m_shift
Definition: fopr_Wilson_impl.h:60
Org::Fopr_Wilson::m_repr
std::string m_repr
Dirac matrix representation.
Definition: fopr_Wilson_impl.h:48
Org::Fopr_Wilson::tidyup
void tidyup()
final clean-up.
Definition: fopr_Wilson_impl.cpp:120
Org::Fopr_Wilson::mult
void mult(Field &v, const Field &w)
multiplies fermion operator to a given field.
Definition: fopr_Wilson_impl.cpp:210
Org::Fopr_Wilson::class_name
static const std::string class_name
Definition: fopr_Wilson_impl.h:41
Org
Clover term operator.
Definition: fopr_CloverTerm_eo_impl.cpp:23
CommonParameters::NPE
static int NPE()
Definition: commonParameters.h:101
Field::reset
void reset(const int Nin, const int Nvol, const int Nex, const element_type cmpl=Element_type::COMPLEX)
Definition: field.h:95
Parameters::set_int_vector
void set_int_vector(const string &key, const vector< int > &value)
Definition: parameters.cpp:45
Org::Fopr_Wilson::D_ex
void D_ex(Field &v, const int ex1, const Field &w, const int ex2)
Definition: fopr_Wilson_impl.cpp:349
ShiftField_lex
Methods to shift a field in the lexical site index.
Definition: shiftField_lex.h:39
Org::Fopr_Wilson::mult_gm5
void mult_gm5(Field &v, const Field &w)
multiplies gamma_5 matrix.
Definition: fopr_Wilson_impl.cpp:370
CommonParameters::Nd
static int Nd()
Definition: commonParameters.h:116
CommonParameters::Vlevel
static Bridge::VerboseLevel Vlevel()
Definition: commonParameters.h:122
Bridge::BridgeIO::set_verbose_level
static VerboseLevel set_verbose_level(const std::string &str)
Definition: bridgeIO.cpp:133
Org::Fopr_Wilson::m_U
const Field_G * m_U
pointer ot gauge configuration
Definition: fopr_Wilson_impl.h:56
ShiftField_lex::backward
void backward(Field &, const Field &, const int mu)
Definition: shiftField_lex.cpp:59
Org::Fopr_Wilson::m_mode
std::string m_mode
matrix multiplcation mode
Definition: fopr_Wilson_impl.h:51
mult_Field_Gn
void mult_Field_Gn(Field_F &y, const int ex, const Field_G &u, int ex1, const Field_F &x, int ex2)
Definition: field_F_imp.cpp:36
Org::Fopr_Wilson::mult_dn
void mult_dn(const int mu, Field &v, const Field &w)
downward nearest neighbor hopping term.
Definition: fopr_Wilson_impl.cpp:433
Org::Fopr_Wilson::m_boundary
std::vector< int > m_boundary
boundary condition
Definition: fopr_Wilson_impl.h:47
Org::Fopr_Wilson::set_config
void set_config(Field *U)
sets the gauge configuration.
Definition: fopr_Wilson_impl.cpp:188
Parameters::fetch_string
int fetch_string(const string &key, string &value) const
Definition: parameters.cpp:378
Parameters::fetch_double
int fetch_double(const string &key, double &value) const
Definition: parameters.cpp:327
Org::Fopr_Wilson::D
void D(Field &, const Field &)
Definition: fopr_Wilson_impl.cpp:333
fopr_Wilson_impl.h
Org::Fopr_Wilson::m_w3
Field m_w3
working fields
Definition: fopr_Wilson_impl.h:62
GammaMatrixSet::get_GM
GammaMatrix get_GM(GMspecies spec)
Definition: gammaMatrixSet.h:76
GammaMatrixSet::GAMMA2
@ GAMMA2
Definition: gammaMatrixSet.h:48
Bridge::BridgeIO::crucial
void crucial(const char *format,...)
Definition: bridgeIO.cpp:180
Field
Container of Field-type object.
Definition: field.h:46
Org::Fopr_Wilson::DDdag
void DDdag(Field &, const Field &)
Definition: fopr_Wilson_impl.cpp:315
ThreadManager::get_thread_id
static int get_thread_id()
returns thread id.
Definition: threadManager.cpp:253
Org::Fopr_Wilson::m_GM
std::vector< GammaMatrix > m_GM
Definition: fopr_Wilson_impl.h:58
Field_G
SU(N) gauge field.
Definition: field_G.h:38
Bridge::BridgeIO::general
void general(const char *format,...)
Definition: bridgeIO.cpp:200
Org::Fopr_Wilson::DdagD
void DdagD(Field &, const Field &)
Definition: fopr_Wilson_impl.cpp:296
Field_F::reset
void reset(int Nvol, int Nex)
Definition: field_F.h:80
ThreadManager::assert_single_thread
static void assert_single_thread(const std::string &class_name)
assert currently running on single thread.
Definition: threadManager.cpp:372
Bridge::vout
BridgeIO vout
Definition: bridgeIO.cpp:512
Org::Fopr_Wilson::flop_count
double flop_count()
this returns the number of floating point operations.
Definition: fopr_Wilson_impl.cpp:449
Bridge::BridgeIO::get_verbose_level
static std::string get_verbose_level(const VerboseLevel vl)
Definition: bridgeIO.cpp:154