Tagged Questions
2
votes
3answers
567 views
C# Random Code Field Generator for Object
I have an object with the following properties
GID
ID
Code
Name
Some of the clients dont want to enter the Code so the intial plan was to put the ID in the code but the baseobject of the orm is ...
1
vote
2answers
48 views
Java SecureRandom internal state
I'm trying to shuffle an array of integer as per below,
and from http://en.wikipedia.org/wiki/Fisher-Yates_shuffle,
"An additional problem occurs when the Fisher–Yates shuffle is used with a ...
1
vote
5answers
782 views
Mersenne Twister: seeding & visualization
I am using a C# implementation of Mersenne Twister I downloaded from CenterSpace. I have two problems with it:
No matter how I seed the algorithm it does not pass DieHard tests, and by that I mean I ...
0
votes
0answers
53 views
How to use rand_event() of OpenSSL
To seed the pseudo random number generator of OpenSSL, for Windows the following function
can be used:
int RAND_event(UINT iMsg, WPARAM wParam, LPARAM lParam);
It should be called with the iMsg, ...
0
votes
2answers
142 views
Pseudorandom seed methodology for lookup tables
Could someone please suggest a good way of taking a global seed value e.g. "Hello World" and using that value to lookup values in arrays or tables.
I'm sort of thinking like that classic spacefaring ...