Changeset 369


Ignore:
Timestamp:
Aug 5, 2005, 2:06:53 PM (18 years ago)
Author:
Peter
Message:

oops

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/random/Random.h

    r368 r369  
    4040
    4141  ///
    42   /// @brief continuous random distributions.
     42  /// @brief Continuous random distributions.
    4343  ///
    4444  /// Abstract base class for continuous random distributions.
     
    173173
    174174  ///
    175   /// @brief discrete random distributions.
     175  /// @brief Discrete random distributions.
    176176  ///
    177177  /// Abstract Base Class for discrete random distributions. Given K
     
    276276    /// @return A Poisson distributed number.
    277277    ///
    278     inline double operator()(void) const
     278    inline long operator()(void) const
    279279    { return gsl_ran_poisson(rng_->rng(), m_); }
    280280
     
    283283    /// m
    284284    /// @note this operator ignores parameters set in Constructor
    285     inline double operator()(const double m) const
     285    inline u_long operator()(const double m) const
    286286    { return gsl_ran_poisson(rng_->rng(), m); }
    287287
Note: See TracChangeset for help on using the changeset viewer.