Changeset 369
- Timestamp:
- Aug 5, 2005, 2:06:53 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/random/Random.h
r368 r369 40 40 41 41 /// 42 /// @brief continuous random distributions.42 /// @brief Continuous random distributions. 43 43 /// 44 44 /// Abstract base class for continuous random distributions. … … 173 173 174 174 /// 175 /// @brief discrete random distributions.175 /// @brief Discrete random distributions. 176 176 /// 177 177 /// Abstract Base Class for discrete random distributions. Given K … … 276 276 /// @return A Poisson distributed number. 277 277 /// 278 inline doubleoperator()(void) const278 inline long operator()(void) const 279 279 { return gsl_ran_poisson(rng_->rng(), m_); } 280 280 … … 283 283 /// m 284 284 /// @note this operator ignores parameters set in Constructor 285 inline doubleoperator()(const double m) const285 inline u_long operator()(const double m) const 286 286 { return gsl_ran_poisson(rng_->rng(), m); } 287 287
Note: See TracChangeset
for help on using the changeset viewer.