COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/random.h

    r16 r12  
    7474///\file
    7575///\brief Mersenne Twister random number generator
     76///
     77///\author Balazs Dezso
    7678
    7779namespace lemon {
     
    515517  /// good programming convenience to use this global generator to get
    516518  /// random numbers.
     519  ///
     520  /// \author Balazs Dezso
    517521  class Random {
    518522  private:
    519523
    520     // Architecture word
     524    // architecture word
    521525    typedef unsigned long Word;
    522526   
     
    720724    /// Gauss distribution with given mean and standard deviation
    721725
    722     /// Gauss distribution with given mean and standard deviation
    723726    /// \sa gauss()
     727    ///
    724728    double gauss(double mean,double std_dev)
    725729    {
     
    811815   
    812816    /// Uniform distribution on the full unit circle.
    813 
    814     /// Uniform distribution on the full unit circle.
    815     ///
    816817    dim2::Point<double> disc()
    817818    {
Note: See TracChangeset for help on using the changeset viewer.