Ignore:
Timestamp:
Aug 5, 2005, 10:58:56 AM (18 years ago)
Author:
Peter
Message:

moved namespace random to its own directory

File:
1 moved

Legend:

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

    r365 r366  
    3939
    4040
     41  ///
     42  /// @brief continuous random distributions.
     43  /// Base for continuous random distributions.
     44  ///
    4145  class RandomContinuous
    4246  {
    4347  public:
    4448
     49    ///
     50    /// @brief Constructor
     51    ///
    4552    inline RandomContinuous(void) { rng_=RNG::instance(89); }
    4653
     
    5259
    5360
    54 
     61  ///
     62  /// @brief Uniform distribution
     63  ///
     64  /// Class for generating a random number from a flat distribution
     65  /// between zero and unity.
     66  ///
     67  /// Distribution function \f$ f(x) = 1 \f$ for \f$ 0 \le x < 1 \f$
     68  /// Expectation value: 0.5
     69  /// Variance: \f$ \frac{1}{12} \f$
     70  ///
    5571  class RandomContinuousUniform : public RandomContinuous
    5672  {
     
    114130
    115131  ///
    116   /// Base class for discrete random distributions.
     132  /// @brief discrete random distributions.
     133  /// Base for discrete random distributions.
    117134  ///
    118135  class RandomDiscrete
Note: See TracChangeset for help on using the changeset viewer.