diff -r 062f361aa520 -r 22696f89d183 lemon/random.h --- a/lemon/random.h Thu Jan 03 01:08:23 2008 +0100 +++ b/lemon/random.h Thu Jan 03 01:24:09 2008 +0100 @@ -73,8 +73,6 @@ ///\ingroup misc ///\file ///\brief Mersenne Twister random number generator -/// -///\author Balazs Dezso namespace lemon { @@ -516,12 +514,10 @@ /// generator which name is \ref lemon::rnd "rnd". Usually it is a /// good programming convenience to use this global generator to get /// random numbers. - /// - /// \author Balazs Dezso class Random { private: - // architecture word + // Architecture word typedef unsigned long Word; _random_bits::RandomCore core; @@ -723,8 +719,8 @@ } /// Gauss distribution with given mean and standard deviation + /// Gauss distribution with given mean and standard deviation /// \sa gauss() - /// double gauss(double mean,double std_dev) { return gauss()*std_dev+mean; @@ -814,6 +810,9 @@ ///@{ /// Uniform distribution on the full unit circle. + + /// Uniform distribution on the full unit circle. + /// dim2::Point disc() { double V1,V2;