Changeset 648 for trunk/c++_tools/random
- Timestamp:
- Sep 14, 2006, 5:04:17 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/c++_tools/random/random.h
r614 r648 108 108 inline std::string name(void) const { return gsl_rng_name(rng_); } 109 109 110 /// 111 /// @return const pointer to underlying GSL random generator. 112 /// 110 113 inline const gsl_rng* rng(void) const { return rng_; } 111 114 … … 181 184 182 185 protected: 186 /// GSL random gererator 183 187 RNG* rng_; 184 188 }; … … 360 364 361 365 protected: 366 /// pointer to GSL random generator 362 367 RNG* rng_; 363 368 }; … … 429 434 /// @brief Constructor 430 435 /// 431 /// @param \am is the expectation value of the distribution.436 /// @param m is the expectation value of the distribution. 432 437 /// 433 438 inline Exponential(const double m=1) : m_(m) {} … … 471 476 /// @brief Constructor 472 477 /// @param s is the standard deviation \f$ \sigma \f$ of distribution 473 /// m is the expectation value \f$ \mu \f$ of the distribution478 /// @param m is the expectation value \f$ \mu \f$ of the distribution 474 479 /// 475 480 inline Gaussian(const double s=1, const double m=0) : m_(m), s_(s) {}
Note: See TracChangeset
for help on using the changeset viewer.