bug-gnubg
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Bug-gnubg] FEATURE REQUEST: Modifications to epc display


From: Jon Kinsey
Subject: Re: [Bug-gnubg] FEATURE REQUEST: Modifications to epc display
Date: Fri, 23 Apr 2004 10:10:30 +0100
User-agent: Mozilla Thunderbird 0.5 (Windows/20040207)

Joern Thyssen wrote:
>
For ANSI and BSD we've no
access to the interval variables for the RNG unless we pull out the code
from libc, modify it and put it into gnubg.

We might be able to use initstate()/setstate() to maintain separate ansi random number generators - and srandom() random() instead of srand and rand?

Jon

Ps. the default rand() code looks something like:

static int seed = 1;

int rand()
{
        return seed = ((seed * 1103515245) + 12345) & 0x7fffffff;
}





reply via email to

[Prev in Thread] Current Thread [Next in Thread]