I am using a System.Random object which is instantiated with a fixed seed all thoughout the application. I am calling the NextDouble method and after some time passed I am getting 0.0 as result.

Is there any remedy to this, has anyone else encountered this ?

EDIT: I have one seed for the whole run which is set to 1000 for convience sake. The random.NextDouble is called several hundred thousand times. It is an optimizer application and could run for couple hours, but this actually happens after 10-0 mins of execution. I have recently added little bit more random calls to the app.

link|improve this question

Can you elaborate on "some time"? Are we talking an hour, or several days of millions of numbers? I don't imagine you've run into a problem in the actual function, but if you're in territory that's never been tested or planned for, I won't discount it immediately. – Tom Ritter Nov 17 '08 at 15:52
feedback

5 Answers

up vote 11 down vote accepted

The random number generator in .NET is not thread safe. Other developers have noticed the same behaviour, and one solution is as follows (from http://blogs.msdn.com/brada/archive/2003/08/14/50226.aspx):

class ThreadSafeRandom
{
    private static Random random = new Random();

    public static int Next()
    {
       lock (random)
       {
           return random.Next();
       }
    }
}
link|improve this answer
It is called from different threads ! – Tomas Pajonk Nov 17 '08 at 15:59
It seems like you could also apply the [ThreadStatic] attribute to your Random instance, if it's a static variable in your app. – Chris Moschini Jan 8 '11 at 19:09
feedback

How often are you seeding Random? It should be done only once at the start of the program.

And once seeded with a given value, it will always produce the exact same sequence.

link|improve this answer
I am seeding it once. – Tomas Pajonk Nov 17 '08 at 15:58
feedback

Tomas, I ran into this "bug" before and the solution for me was to make the _rnd variable module-level:

Private Shared _rnd As System.Random()
Public Shared Function RandRange(ByVal low As Integer, ByVal high As Integer) As Integer
    If _rnd Is Nothing Then
        _rnd = New System.Random()
    End If
    Return rnd.Next(low, high)
End Function
link|improve this answer
feedback

Other folks have already done a decent job explaining it and providing solutions.

Anyway, a similiar question has been answered before by Erik, check it out:

Pseudo Random Generator with same output

You also get more questions and answers related to the topic (Random Number Generators) at:

Stackoverflow.com random-number-generator

Gene

P.S. This is just to supplement the accepted answer.

link|improve this answer
feedback

have a look at this http://msdn.microsoft.com/en-us/library/system.random.aspx it should explain why your getting the same value.

link|improve this answer
The new Random(DateTime.Now.Second) option is limited to 60 distinct runs of values. – Jason Z Nov 17 '08 at 15:53
Why not just use the default constructor, and let it pick a seed for you? Guaranteed to be a better idea than these. – Domenic Nov 17 '08 at 15:55
yep ok, changed to be less stupid. – Hath Nov 18 '08 at 10:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.