mohamadDev / aforge

Automatically exported from code.google.com/p/aforge
Other
0 stars 0 forks source link

GaussianGenerator constructor ignores the seed value #129

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The seed argument is not sent to the StandardGenerator constructor

        public GaussianGenerator( double mean, double stdDev, int seed )
        {
            this.mean   = mean;
            this.stdDev = stdDev;

            rand = new StandardGenerator( );
        }

Original issue reported on code.google.com by tore.mu...@gmail.com on 25 Feb 2010 at 10:02

GoogleCodeExporter commented 9 years ago
Fixed.

Committed in revision 1189. Will be released in version 2.1.2.

Original comment by andrew.k...@gmail.com on 25 Feb 2010 at 10:09

GoogleCodeExporter commented 9 years ago

Original comment by andrew.k...@gmail.com on 10 Mar 2010 at 3:12