Changeset 2089 for trunk/yat/random/random.h
- Timestamp:
- Oct 21, 2009, 11:42:53 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/random/random.h
r1797 r2089 6 6 /* 7 7 Copyright (C) 2005, 2006, 2007, 2008 Jari Häkkinen, Peter Johansson 8 Copyright (C) 2009 Peter Johansson 8 9 9 10 This file is part of the yat library, http://dev.thep.lu.se/yat … … 176 177 /// @brief Constructor 177 178 /// 178 RNG_state(const RNG*);179 explicit RNG_state(const RNG*); 179 180 180 181 /** … … 273 274 /// @param hist is a Histogram defining the probability distribution 274 275 /// 275 DiscreteGeneral(const statistics::Histogram& hist);276 explicit DiscreteGeneral(const statistics::Histogram& hist); 276 277 277 278 /** … … 340 341 is thrown. 341 342 */ 342 DiscreteUniform(unsigned long n=0);343 explicit DiscreteUniform(unsigned long n=0); 343 344 344 345 /** … … 392 393 /// @param m is expectation value 393 394 /// 394 Poisson(const double m=1);395 explicit Poisson(const double m=1); 395 396 396 397 /// … … 492 493 /// @param hist is a Histogram defining the probability distribution 493 494 /// 494 ContinuousGeneral(const statistics::Histogram& hist);495 explicit ContinuousGeneral(const statistics::Histogram& hist); 495 496 496 497 /// … … 526 527 /// @param m is the expectation value of the distribution. 527 528 /// 528 Exponential(const double m=1);529 explicit Exponential(const double m=1); 529 530 530 531 /// … … 567 568 /// @param m is the expectation value \f$ \mu \f$ of the distribution 568 569 /// 569 Gaussian(const double s=1, const double m=0);570 explicit Gaussian(const double s=1, const double m=0); 570 571 571 572 ///
Note: See TracChangeset
for help on using the changeset viewer.