TF++, Miscellaneous classes and modules in C++:

◆ rng_list_types()

void tfxx::numeric::RNGgaussian::rng_list_types ( std::ostream &  os)
static

print list of random number generators to stream.

Print list of random number generators to stream.

See also
https://www.gnu.org/software/gsl/doc/html/rng.html#random-number-generator-algorithms

Definition at line 122 of file rng.cc.

Referenced by main().

123  {
124  const gsl_rng_type **t, **t0;
125 
126  t0 = gsl_rng_types_setup ();
127 
128  for (t = t0; *t != 0; t++)
129  {
130  os << std::string((*t)->name) << std::endl;
131  }
132 
133  } // RNGgaussian::rng_list_types(std::ostream* os)
Here is the caller graph for this function: