active questions tagged random-number-generator - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T07:22:34Zhttp://stackoverflow.com/feeds/tag/random-number-generatorhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1787039/mersenne-twister-seeding-visualization1Mersenne Twister: seeding & visualizationMehdi Khalili2009-11-24T00:23:24Z2009-11-26T03:30:04Z
<p>I am using a C# implementation of Mersenne Twister I downloaded from <a href="http://www.centerspace.net/resources/downloads/" rel="nofollow">CenterSpace</a>. I have two problems with it:</p>
<ol>
<li>No matter how I seed the algorithm it does not pass <a href="http://i.cs.hku.hk/~diehard/" rel="nofollow">DieHard tests</a>, and by that I mean I get quite a lot of 1s and 0s for p-value. Also my KStest on 269 p-values is 0. Well, I cannot quite interpret p-value, but I think a few 1s and 0s in the result is bad news.</li>
<li>I have been asked to visually show the randomness of the numbers. So I plot the numbers as they are generated, and this does not seem random at all. Here is two screenshots of the result <a href="http://www.freeimagehosting.net/image.php?75a099dfd2.jpg" rel="nofollow">after a few seconds</a> and <a href="http://www.freeimagehosting.net/image.php?94493444a8.jpg" rel="nofollow">a few seconds later</a>. As you can see in the second screenshot the numbers fall on some parallel lines. I have tried different algorithms to map numbers to points. They all result in parallel lines, but with different angles! This is how I mapped numbers to points for these screenshots: <code>new Point(number % _canvasWidth, number % _canvasHeight)</code>. As you may guess, the visual result depends on the form's width and height, and <a href="http://www.freeimagehosting.net/image.php?fb768b6d26.jpg" rel="nofollow">this is</a> a disasterous result.</li>
</ol>
<p>Here is a few ways I tried to seed the algorithm:</p>
<ol>
<li>User entry. I enter some numbers to seed the algorithm as an int array.</li>
<li>Random numbers generated by the algorithm itself!!</li>
<li>An array of <code>new Guid().GetHashCode()</code></li>
</ol>
<p>What am I missing here? How should I seed the algorithm? How can I get it pass the DieHard? </p>
http://stackoverflow.com/questions/1790776/fast-random-generator2Fast Random Generatortazzo2009-11-24T15:24:31Z2009-11-24T18:07:43Z
<p>How can I make a fast RNG (Random Number Generator) in C# that support filling an array of bytes with a maxValue (and/or a minValue)?
I have found this <a href="http://www.codeproject.com/KB/cs/fastrandom.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/fastrandom.aspx</a> but doesn't have these feature.</p>
http://stackoverflow.com/questions/1785744/how-do-i-seed-a-random-class-to-avoid-getting-duplicate-random-values2how do i seed a random class to avoid getting duplicate random valuesoo2009-11-23T20:31:58Z2009-11-23T20:53:57Z
<p>i have the following code inside a static method in a static class</p>
<pre><code>Random r = new Random();
int randomNumber = r.Next(1,100);
</code></pre>
<p>i have this inside a loop and i keep getting the same randomNumber?</p>
<p>any suggestions here?</p>
http://stackoverflow.com/questions/1717907/generating-correlated-numbers3Generating correlated numbersGideon2009-11-11T20:41:06Z2009-11-22T22:33:23Z
<p>Here is a fun one: I need to generate random x/y pairs that are correlated at a given value of <a href="http://en.wikipedia.org/wiki/Pearson%5Fproduct-moment%5Fcorrelation%5Fcoefficient" rel="nofollow">Pearson product moment correlation coefficient, or Pearson r</a>. You can imagine this as two arrays, array X and array Y, where the values of array X and array Y must be re-generated, re-ordered or transformed until they are correlated with each other at a given level of Pearson r. Here is the kicker: Array X and Array Y must be uniform distributions. </p>
<p>I can do this with a normal distribution, but transforming the values without skewing the distribution has me stumped. I tried re-ordering the values in the arrays to increase the correlation, but I will never get arrays correlated at 1.00 or -1.00 just by sorting. </p>
<p>Any ideas?</p>
<p>--</p>
<p>here is the AS3 code for random correlated gaussians, to get the wheels turning:</p>
<pre><code>public static function nextCorrelatedGaussians(r:Number):Array{
var d1:Number;
var d2:Number;
var n1:Number;
var n2:Number;
var lambda:Number;
var r:Number;
var arr:Array = new Array();
var isNeg:Boolean;
if (r<0){
r *= -1;
isNeg=true;
}
lambda= ( (r*r) - Math.sqrt( (r*r) - (r*r*r*r) ) ) / (( 2*r*r ) - 1 );
n1 = nextGaussian();
n2 = nextGaussian();
d1 = n1;
d2 = ((lambda*n1) + ((1-lambda)*n2)) / Math.sqrt( (lambda*lambda) + (1-lambda)*(1-lambda));
if (isNeg) {d2*= -1}
arr.push(d1);
arr.push(d2);
return arr;
}
</code></pre>
http://stackoverflow.com/questions/1710040/why-isnt-randomized-probing-more-popular-in-hash-table-implementations4Why isn't randomized probing more popular in hash table implementations?dsimcha2009-11-10T18:14:49Z2009-11-19T22:16:33Z
<p>According to various sources, such as Wikipedia and various .edu websites found by Google, the most common ways for a hash table to resolve collisions are linear or quadratic probing and chaining. Randomized probing is briefly mentioned but not given much attention. I've implemented a hash table that uses randomized probing to resolve collisions. Assuming there is a collision, resolution works as follows:</p>
<ol>
<li>The full (32-bit) hash of an object is used to seed a linear congruential random number generator.</li>
<li>The generator generates 32-bit numbers and the modulus is taken to determine where in the hash table to probe next.</li>
</ol>
<p>This has the very nice property that, regardless of how many hash collisions there are in modulus space, lookup and insertion times are expected to be O(1) as long as there are few collisions in full 32-bit hash space. Because the probe sequence is pseudo-random, no clustering behavior results from modulus space collisions, unlike with linear probing. Because the entire system is open-addressed and doesn't use linked lists anywhere, you don't need to perform a memory allocation on each insertion, unlike chaining.</p>
<p>Furthermore, because the size of the hash is usually the size of the address space (32 bits on 32-bit machines), it is simply impossible to fit enough items in address space to cause large numbers of hash collisions in full 32-bit hash space under a good hashing scheme.</p>
<p>Why, then, is randomized probing such an unpopular collision resolution strategy?</p>
http://stackoverflow.com/questions/167735/fast-pseudo-random-number-generator-for-procedural-content4Fast pseudo random number generator for procedural contentSuma2008-10-03T16:25:35Z2009-11-18T21:21:05Z
<p>I am looking for a pseudo random number generator which would be specialized to work fast when it is given a seed before generating each number. Most generators I have seen so far assume you set seed once and then generate a long sequence of numbers. The only thing which looks somewhat similar to I have seen so far is Perlin Noise, but it generates too "smooth" data - for similar inputs it tends to produce similar results.</p>
<p>The declaration of the generator should look something like:</p>
<pre><code>int RandomNumber1(int seed);
</code></pre>
<p>Or:</p>
<pre><code>int RandomNumber3(int seedX, int seedY, int seedZ);
</code></pre>
<p>I think having good RandomNumber1 should be enough, as it is possible to implement RandomNumber3 by hashing its inputs and passing the result into the RandomNumber1, but I wrote the 2nd prototype in case some implementation could use the independent inputs.</p>
<p>The intended use for this generator is to use it for procedural content generator, like generating a forest by placing trees in a grid and determining a random tree species and random spatial offsets for each location.</p>
<p>The generator needs to be very efficient (below 500 CPU cycles), because the procedural content is created in huge quantities in real time during rendering.</p>
http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected36Could a truly random number be generated using pings to psuedo-randomly selected IP addresses?_ande_turner_2008-09-26T01:57:39Z2009-11-15T10:24:40Z
<p>The question posed came about during a 2nd Year Comp Science lecture while discussing the impossibility of generating numbers in a deterministic computational device.</p>
<p>This was the only suggestion which didn't depend on non-commodity-class hardware.</p>
<p>Subsequently nobody would put their reputation on the line to argue definitively for or against it. </p>
<p>Anyone care to make a stand for or against. If so, how about a mention as to a possible implementation?</p>
http://stackoverflow.com/questions/1726272/generating-a-160bit-string-which-is-stored-in-an-array1Generating a 160bit string which is stored in an array.unknown (yahoo)2009-11-13T00:00:07Z2009-11-13T00:22:37Z
<p>Hello! I'm trying to generate a random 160bit string which is supposed to be stored in a character array named str[20]. It's obvious that the array holds 20 characters. How can I change the 160bits into 20 characters/numbers? I'm trying to do this in C.. Any help is greatly appreciated as I've ran out of ideas and then helpdesk at my uni won't help me..</p>
http://stackoverflow.com/questions/1722880/updating-on-screen-count-as-javascript-code-runs0Updating on screen count as javascript code runs.Stanni2009-11-12T15:10:18Z2009-11-12T15:20:52Z
<p>Hey, I've just started learning JavaScript and I'm making a little script that generates two numbers, the first number stays the same but the second number gets regenerated if it doesn't match the first number.</p>
<p>Here is my script:</p>
<pre><code>function randomNumberMatcher(){
$(document).ready(function(){
var number1 = Math.floor(1000000*Math.random());
var number2 = Math.floor(1000000*Math.random());
var count = 0;
$("#box").append("Number to match:[" + number1 + "]<br /><span id='count'></span>");
function newNumber(){
number2 = Math.floor(1000000*Math.random())
count ++;
$("#count").html("Number of tries:[" + count + "]<br /><br />");
$("#box").append(number2 + "<br />");
check();
}
function check(){
if(number2 != number1){
newNumber();
}
}
check();
});
};
</code></pre>
<p>At the moment when i run the script all it does is hang until it has finished and then it prints the data to the screen, this however is not what I intended it to do, what I want is it print the data to the screen in real time so that I can see the different numbers it is generating appear on the screen one by one.</p>
<p>How would I make it do this?</p>
<p>note: I'm also using the jQuery library.</p>
http://stackoverflow.com/questions/1718854/correct-use-of-s-rand-or-boostrandom0Correct use of s/rand or Boost::randomDrew2009-11-11T23:39:27Z2009-11-11T23:50:37Z
<p>I know this kind of question has been asked a few times, but alot of them answers boil down to RTFM, but I'm hoping if I can ask the right question... I can get a quasi-definitive answer for everyone else as well, regarding implementation.</p>
<p>I'm trying to generate a sequence of random numbers in one of the two following ways:</p>
<pre><code>#include <cstdlib>
#include <ctime>
#include <cmath>
#include "Cluster.h"
#include "LatLng.h"
srand((unsigned)time(0));
double heightRand;
double widthRand;
for (int p = 0; p < this->totalNumCluster; p++) {
Option 1.
heightRand = myRand();
widthRand = myRand();
Option 2.
heightRand = ((rand()%100)/100.0);
widthRand = ((rand()%100)/100.0);
LatLng startingPoint( 0, heightRand, widthRand );
Cluster tempCluster(&startingPoint);
clusterStore.insert( clusterStore.begin() + p, tempCluster);
}
</code></pre>
<p>Where myRand() is:</p>
<pre><code>#include <boost/random.hpp>
double myRand()
{
boost::mt19937 rng;
boost::uniform_int<> six(1,100);
boost::variate_generator<boost::mt19937&, boost::uniform_int<> > die(rng, six);
int tempDie = die();
double temp = tempDie/100.0;
return temp;
}
</code></pre>
<p>Every time I run Option 1, I get the same number on each execution of each loop. But different on each run of the program.</p>
<p>When I run Option 2, I get 82 from the boost libraries, so 0.81999999999999 is returned. I could understand if it was 42, but 82 is leaving me scratching my head even after reading the boost random docs.</p>
<p>Any ideas?</p>
<p>DJS.</p>
http://stackoverflow.com/questions/1716308/how-does-a-random-number-generator-work0How does a random number generator work?Ole Jak2009-11-11T16:24:33Z2009-11-11T16:40:04Z
<p>How do random number generator works? (for example in C/C++ Java)</p>
<p>How can I write my own random number generator? (for example in C/C++ Java)</p>
http://stackoverflow.com/questions/1692003/pseudorandom-sequence-generator-not-just-a-number-generator1Pseudorandom Sequence Generator not just a number generator.Sam Washburn2009-11-07T04:35:13Z2009-11-07T06:45:57Z
<p>I need an algorithm that pretty much will turn a unix timestamp into a suitably random number, so that if I "play back" the timestamps I get the same random numbers.</p>
<p>And here's what I mean by suitably:</p>
<ol>
<li>Most humans will not detect a loop or pattern in the random numbers.</li>
<li>It need not be cryptographically secure.</li>
<li>All numbers must be capable of being generated. (I've found that LFSR don't do this)</li>
<li>The numbers are 32 bit integers</li>
</ol>
<p>And I would like it to be fairly fast.</p>
<p>So far my idea is to just seed a PRNG over and over, but I'm not sure if that's the best way to handle this.</p>
<p>Any thoughts and ideas will be much appreciated.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1691225/good-libraries-for-generating-non-uniform-pseudo-random-numbers2Good libraries for generating non uniform pseudo-random numbers Amokrane2009-11-06T23:28:09Z2009-11-07T05:38:12Z
<p>Hi,</p>
<p>I'm looking for known libraries that are able to generate non uniformly distributed random numbers for C, C++ and Java.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1667264/quantis-quantum-random-number-generator-qrng-any-reviews1Quantis Quantum Random Number Generator (QRNG) - any reviews?tinkertim2009-11-03T13:12:06Z2009-11-03T14:20:40Z
<p>I am thinking about getting <a href="http://www.idquantique.com/products/quantis.htm" rel="nofollow">one of these</a> (PCI) to set up an internal entropy pool similar to <a href="http://random.irb.hr/" rel="nofollow">this service</a> who incidentally brought us <a href="http://random.irb.hr/signup.php" rel="nofollow">fun captcha challenges</a>.</p>
<p>Prior to lightening my wallet, I'm hoping to gather feedback from people who may be using this device. As there is no possible 'correct' answer, I am making this CW and tagging it as subjective.</p>
<p>I'm undertaking a project to help write Monte Carlo simulations for a <a href="http://nettingnations.org" rel="nofollow">non profit</a> that distributes mosquito nets in Malaria stricken areas. The idea is to model areas to determine the best place to distribute mosquito nets. During development, I expect to consume gigs if not more of the RNG output. We really need our own source.</p>
<p>Is this device reliable? Does it have to be re-started often? Is its bandwidth really as advertised? It passes all tests, as far as randomness goes (i.e. NIST/DIEHARD). What I don't want is something in deadlock due to some ioctl in disk sleep that does nothing but radiate heat.</p>
<p>This is not a spamvertisement, I'm helping out of pocket and I really, really want to know if such a large purchase will bear fruit. I can't afford to build a HRNG based on radioactive decay, this looks like the next best thing.</p>
<p>Any comments are appreciated. I will earn zero rep for this, please do not vote to close. This is no different than questions regarding the utilization of some branded GPU for some odd purpose.</p>
<p>Answers pointing to other solutions will be gladly accepted, I'm not married to this idea.</p>
http://stackoverflow.com/questions/1657474/sqlserver-rand-question0SqlServer Rand() questionJeff2009-11-01T15:47:42Z2009-11-01T17:03:38Z
<p>I am writing a procedure where each call it needs to get a single random number. This procedure is called from our .net web service. </p>
<p>I tried implementing this using rand(). However, when I have multiple calls to the stored procedure within milliseconds, I am getting a lot of collisions in that the same random number is being generated. If there is a space of about 20 or 30 ms between subsequent calls it appears to work ok.</p>
<p>It appears that rand() is reseeded each stored procedure call by SqlServer. From what I understand this is a problem because one should seed a random number generator once and that one doesn't get a good sequence of pseudo-random numbers if one is reseeding each call to rand. Also, it appears that calls to the same sp that are within 1 or 2 milliseconds get seeded with the same value.</p>
<p>Here is the statement itself in the stored procedure.</p>
<pre><code>DECLARE @randomNumber char(9)
SET @randomNumber = RIGHT('00000' + CAST(CAST(rand()*100000 AS INT) AS VARCHAR(5)),5)
+ RIGHT('00000' + CAST(CAST(rand()*10000 AS INT) AS VARCHAR(4)),4)
</code></pre>
<p>Does anyone have a suggestion for fixing this? </p>
<p>Will I have to write my own random number generator that is seeded once and saves its state in a table across calls? How does SQL Server seed rand()? Is it truly random or if you call an sp within 1 or 2 milliseconds of each other on separate connections will it be seeded with the same seed causing a collision?</p>
http://stackoverflow.com/questions/1655559/how-can-i-generate-random-numbers-in-python2How can I generate random numbers in Python?Nathan Fellman2009-10-31T20:38:36Z2009-11-01T01:21:33Z
<p>Are there any built-in libraries in Python or Numpy to generate random numbers based on various common distributions, such as:</p>
<ul>
<li>Normal</li>
<li>Poisson</li>
<li>Exponential</li>
<li>Bernoulli</li>
</ul>
<p>And various others?</p>
<p>Are there any such libraries with multi-variate distributions?</p>
http://stackoverflow.com/questions/1189008/intel-math-kernel-on-windows-calling-from-c-for-random-number-generation4Intel Math Kernel on windows, calling from c# for random number generationm3ntat2009-07-27T15:58:39Z2009-10-30T19:38:51Z
<p>Has anyone used the <strong>Intel Math Kernel library</strong> <a href="http://software.intel.com/en-us/intel-mkl/" rel="nofollow">http://software.intel.com/en-us/intel-mkl/</a></p>
<p>I am thinking of using this for <strong>Random Number generation from a C# application</strong> as we need extreme performance (1.6 trillion random numbers per day).</p>
<p>Also any advice on minimising the overhead of <strong>consuming functions from this c++ code in my c#</strong> Monte Carlo simulation.</p>
<ul>
<li>Am about to download the Eval from the site and above and try and benchmark this from my c# app, any help much appreciated.</li>
</ul>
<p>Thanks</p>
http://stackoverflow.com/questions/757151/random-number-generation-on-spartan-3e2Random number generation on Spartan-3Eakosch2009-04-16T17:15:40Z2009-10-29T15:57:01Z
<p>I need to generate pseudo-random numbers for my genetic algorithm on a Spartan-3E FPGA and i want to implement it in verilog: could you give me any pointers on this?</p>
http://stackoverflow.com/questions/1641371/php-random-numbers-1PHP Random NumbersBrendan Berman2009-10-29T02:55:43Z2009-10-29T04:08:54Z
<p>i need to print out numbers 1-100 in a random order. the print statement should be:</p>
<p>echo 'h{'.$num.'}';</p>
<p>what is the shortest code to do this?</p>
http://stackoverflow.com/questions/1640258/need-a-fast-random-generator-for-c1Need a fast random generator for c++Martin Andersson2009-10-28T21:33:34Z2009-10-28T22:08:28Z
<p>Hi guys.</p>
<p>I'm trying to do some opt-3 swapping on my TSP generator for euclidian distances, and since I in many cases have more than ~500 nodes, I need to randomly select at least 1 of the 3 nodes that I want to try swapping.</p>
<p>So basically I need a random-number function that's <strong>fast</strong>. (the normal rand() is way too slow) It doesn't have to be awesome, just good <em>enough</em>.</p>
<p>EDIT:
I forgot to mention, i'm sitting at an environment where I can't add any libraries except the Standard Language Library (such as STL, iostream etc). So no boost =/</p>
http://stackoverflow.com/questions/1638237/boost-random-number-library-use-same-random-number-generator-for-different-varia0boost random number library, use same random number generator for different variate generators scandido2009-10-28T16:04:38Z2009-10-28T17:06:00Z
<p>It seems that one can use the following code to produce random numbers from a particular Normal distribution:</p>
<pre><code>float mean = 0, variance = 1;
boost::mt19937 randgen(static_cast<unsigned int>(std::time(0)));
boost::normal_distribution<float> noise(mean, variance);
variate_generator<mt19937, normal_distribution<float> > nD(randgen, noise);
float random = nD();
</code></pre>
<p>This works fine, however, I would like to be able to draw numbers from several distributions, i.e. one would think something like:</p>
<pre><code>float mean1 = 0, variance1 = 1, mean2 = 10, variance2 = 0.25;
boost::mt19937 randgen(static_cast<unsigned int>(std::time(0)));
boost::normal_distribution<float> noise1(mean1, variance1);
boost::normal_distribution<float> noise2(mean2, variance2);
variate_generator<mt19937, normal_distribution<float> > nD(randgen, noise1);
variate_generator<mt19937, normal_distribution<float> > nC(randgen, noise2);
float random1 = nD();
float random2 = nC();
</code></pre>
<p>However, the problem appears to be that nD() and nC() are generating similar sequences of numbers. I hypothesize this is because the constructor for variate_generator appears to make a copy of randgen, not use it explicitly. Thus, the same psuedo-random sequence is being generated and simply pushed through different transformations (due to the different parameters of the distributions). </p>
<p>Does anyone know if there is a way, in Boost, to create a single random number generator and use it for multiple distributions? Alternatively, does the design of the Boost random library intend users to create one random number generator per distribution? Obviously, I could write code to transform a sequence of uniform random numbers to a sequence from an arbitrary distribution, but I'm looking for something simple and already built-in to the library. </p>
<p>Thanks in advance for your help.</p>
http://stackoverflow.com/questions/1626023/c-normal-random-number3C# Normal Random NumberJ.Hendrix2009-10-26T17:12:10Z2009-10-26T21:50:58Z
<p>I would like to create a function that accepts <code>Double mean</code>, <code>Double deviation</code> and returns a random number with a normal distribution. </p>
<p>Example: if I pass in 5.00 as the mean and 2.00 as the deviation, 68% of the time I will get a number between 3.00 and 7.00</p>
<p>My statistics is a little weak…. Anyone have an idea how I should approach this? My implementation will be C# 2.0 but feel free to answer in your language of choice as long as the math functions are standard.</p>
<p>I think <a href="http://stackoverflow.com/questions/1197321/need-help-generating-discrete-random-numbers-from-distribution/1197393#1197393">this</a> might actually be what I am looking for. Any help converting this to code?</p>
<p>Thanks in advance for your help.</p>
http://stackoverflow.com/questions/1621326/randoms-numbers-on-iphone0Randoms numbers on iPhoneleon2009-10-25T16:30:33Z2009-10-25T21:50:27Z
<p>Hi,
What is better? I have the prioritized in the order of "goodness", am I correct?</p>
<ol>
<li>arc4random</li>
<li>randmom</li>
<li>rand</li>
</ol>
<p>1 - best, 3 - worst</p>
<p>I need a really good randmon number gen for a lowe number (< 50), so I using % 50 to obtain numbers below 50.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1619836/c-random-number2C# Random Numberthecaptain02202009-10-25T02:46:12Z2009-10-25T13:46:38Z
<p>I am working on a project in which I need to generate 8 random numbers. I am having an issue with the random number part being very time consuming for some reason. What I mean by 8 random numbers is I need a string that is 8 characters long consisting of the numbers 0-9. Example 01234567 or 23716253 etc. </p>
<p>I tried looping 8 times generating a random number with Random.Next(0, 9) and just turning them to a string and concatenating them to the final string. I also tried generating a random number using Random.Next(0, 99999999) and just converting the number to a string and padding it to 8 with 0's. </p>
<p>It seems like both are pretty slow and I need to come up with a faster way. I dont mind making calls to other languages or somthing either if it will help performance.</p>
<p>Here is some extra info to add. I dont think im going to find anything super efficient. I have to generate this number about 50000 times. When I ran a test with 47000 it took 8:39 seconds. This is only like .011 seconds each time but it was just slowing thins down because im also working with a has table. I also called hashtable.ContainsKey() all 47000 times and it only took a total of 58 seconds. It just is such a big difference. </p>
<p>Here is the code I origanally used.
Convert.ToString(rg.Next(0, 99999999)).PadLeft(8, '0');</p>
<p>Here is some code to try to figure this out. Here are the times that I get
Contains Value: 00:00:00.4287102
Contains Key: 00:01:12.2539062
Generate Key: 00:08:24.2832039
Add: 00:00:00</p>
<pre><code> TimeSpan containsValue = new TimeSpan();
TimeSpan containsKey = new TimeSpan();
TimeSpan generateCode = new TimeSpan();
TimeSpan addCode = new TimeSpan();
StreamReader sr = new StreamReader(txtDictionaryFile.Text);
string curWord = sr.ReadLine().ToUpper();
int i = 1;
DateTime start;
DateTime end;
while (!sr.EndOfStream)
{
start = DateTime.Now;
bool exists = mCodeBook.ContainsValue(curWord);
end = DateTime.Now;
containsValue += end - start;
if (!exists)
{
string newCode;
bool kExists;
do
{
start = DateTime.Now;
Random rnd = new Random();
StringBuilder builder = new StringBuilder(8);
byte[] b = new byte[8];
rnd.NextBytes(b);
for (int i = 0; i < 8; i++)
{
builder.Append((char)((b[i] % 10) + 48));
}
newCode = builder.ToString();
end = DateTime.Now;
generateCode += end - start;
start = DateTime.Now;
kExists = mCodeBook.ContainsKey(newCode);
end = DateTime.Now;
containsKey += end - start;
}
while (kExists);
start = DateTime.Now;
mCodeBook.Add(newCode, curWord);
end = DateTime.Now;
addCode += start - end;
}
i++;
curWord = sr.ReadLine().ToUpper();
}
</code></pre>
http://stackoverflow.com/questions/1257299/why-use-the-c-class-system-random-at-all-instead-of-system-security-cryptography6Why use the C# class System.Random at all instead of System.Security.Cryptography.RandomNumberGenerator?Lernkurve2009-08-10T21:25:54Z2009-10-25T09:09:53Z
<p>Why would anybody use the "standard" random number generator from <a href="http://msdn.microsoft.com/en-us/library/system.random.aspx" rel="nofollow">System.Random</a> at all instead of always using the cryptographically secure random number generator from <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.randomnumbergenerator.aspx" rel="nofollow">System.Security.Cryptography.RandomNumberGenerator</a> (or its subclasses because RandomNumberGenerator is abstract)?</p>
<p>Nate Lawson tells us in his Google Tech Talk presentation "<a href="http://www.youtube.com/watch?v=ySQl0NhW1J0" rel="nofollow">Crypto Strikes Back</a>" at minute 13:11 not to use the "standard" random number generators from Python, Java and C# and to instead use the cryptographically secure version.</p>
<p>I know the difference between the two versions of random number generators (see <a href="http://stackoverflow.com/questions/101337/what-is-the-difference-between-a-randomly-generated-number-and-secure-randomly-ge">question 101337</a>).</p>
<p>But what rationale is there to not always use the secure random number generator? Why use System.Random at all? Performance perhaps?</p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game11What is a good random number generator for a game?mmyers2009-06-25T23:34:43Z2009-10-23T21:36:23Z
<p>What is a good random number generator to use for a game in C++?</p>
<p>My considerations are:</p>
<ol>
<li>Lots of random numbers are needed, so speed is good.</li>
<li>Players will always complain about random numbers, but I'd like to be able to point them to a reference that explains that I really did my job. </li>
<li>Since this is a commercial project which I don't have much time for, it would be nice if the algorithm either a) was relatively easy to implement or b) had a good non-GPL implementation available.</li>
<li>I'm already using <code>rand()</code> in quite a lot of places, so any other generator had better be good to justify all the changes it would require.</li>
</ol>
<p>I don't know much about this subject, so the only alternative I could come up with is the <a href="http://en.wikipedia.org/wiki/Mersenne%5FTwister" rel="nofollow">Mersenne Twister</a>; does it satisfy all these requirements? Is there anything else that's better?</p>
<p><strong>Edit:</strong> Mersenne Twister seems to be the consensus choice. But what about point #4? Is it really that much better than <code>rand()</code>?</p>
<p><strong>Edit 2:</strong> Let me be a little clearer on point 2: There is no way for players to cheat by knowing the random numbers. Period. I want it random enough that people (at least those who understand randomness) can't complain about it, but I'm not worried about predictions.
That's why I put speed as the top consideration.</p>
<p><strong>Edit 3:</strong> I'm leaning toward the Marsaglia RNGs now, but I'd still like more input. Therefore, I'm setting up a bounty.</p>
<p><strong>Edit 4:</strong> Just a note: I intend to accept an answer just before midnight UTC today (to avoid messing with someone's rep cap). So if you're thinking of answering, don't wait until the last minute!<br />
Also, I like the looks of Marsaglia's XORshift generators. Does anyone have any input about them?</p>
http://stackoverflow.com/questions/1614244/dice-roller-using-tkinter1Dice Roller using TkinterBrian Zylstra2009-10-23T15:34:24Z2009-10-23T15:59:42Z
<p>Thank you to everybody who helped answer my last <a href="http://stackoverflow.com/questions/1579741/is-there-a-random-function-in-python-that-accepts-variables">question</a>: </p>
<p>My friend took the code, and has attempted to use Tkinter to make a box that we could use to make things nicer-looking, but he has been unable to integrate the dice roller from the last question and the Tkinter. Any help or ideas in getting the dice roller into the code below would be wonderful!</p>
<pre><code>from Tkinter import *
def callme():
label3 = Label(root, text = 'Haha! I lied!')
label3.pack(padx = 10, pady = 10)
root = Tk()
label = Label(root, text = 'How many dice do you want to roll?')
label.pack(padx = 10, pady = 10)
entry = Entry(root,bg = 'white').pack(padx = 10, pady = 10)
label2 = Label(root, text = 'How many dice do you want to roll?')
label2.pack(padx = 10, pady = 10)
entry = Entry(root,bg = 'white').pack(padx = 10, pady = 10)
frame = Frame(root, bg = 'yellow')
button = Button(frame, command = callme, text = 'Roll!',width = 5, height = 2)
frame.pack()
button.pack(padx=10,pady=10)
root.mainloop()
</code></pre>
http://stackoverflow.com/questions/1607919/properly-seeding-random-numbers-in-class-library-called-from-asp-net-web-page0Properly Seeding Random numbers in Class Library called from ASP.Net Web Pagejkelley2009-10-22T15:11:49Z2009-10-23T12:20:23Z
<p>I'm experiencing a problem with my random number generator in a class library returning the same value repeatedly. It returns the same value b/c it is repeatedly initialized with the default constructor - for example: <br /></p>
<pre><code>public static T GetRandomValue<T>(T[] array)
{
int ndx = new Random().Next(array.Length);
return array[ndx];
}
</code></pre>
<p>This is called repeatedly from another method before the system clock can change, so it is initialized with the same random seed, giving the same value. (see <a href="http://stackoverflow.com/questions/932520/why-does-it-appear-that-my-random-number-generator-isnt-random-in-c">SO article for apparently malfunctioning random number generator</a>) It is used to select a random format string for some text generation algorithms. Because it is called in rapid sequence every time my different bits of text generates with a homogeneous formatting string, which is undesirable for the application.
<br />
<br />
It is typically called from an asp.net webpage, and I'm wondering what the best approach is to produce a random sequence, without creating performance issues for the pages that call the method repeatedly.</p>
<p>A web page calls the library method, which calls the random number. I am wondering if i can use this approach for a static number generator instead. Are there performance issues associated with calling a static method like this from a webpage?</p>
<pre><code>public class Utility
{
public static Random random = new Random();
public static T GetRandomValue<T>(T[] array)
{
int ndx = random.Next(array.Length);
return array[ndx];
}
}
</code></pre>
<p>A lock on "random" and "ndx" may be needed too. Is there a better practice in general for handling this type of seeding in a class library?</p>
http://stackoverflow.com/questions/1587799/why-would-rand-return-a-negative-value-when-min-and-max-values-are-positive0Why would rand() return a negative value when min and max values are positive?Toytown Mafia2009-10-19T09:46:49Z2009-10-19T10:27:28Z
<p>Hi,</p>
<p>I have a simple piece of PHP code which requires a random number to be created. However, even though the input is always positive, it sometimes returns a negative output.</p>
<p>Here's my debug code:</p>
<pre><code>$debt = rand($this->gdp * 0.02, $this->gdp * 0.17);
echo "<p>GDP: ".$this->gdp." rand(".$this->gdp * 0.02." , ".$this->gdp * 0.17.") = <strong>".$debt."</strong></p>";
</code></pre>
<p>Here's an example output:</p>
<pre><code>GDP: 219254674605 rand(4385093492.1 , 37273294682.85) = 75276999
GDP: 345015694865 rand(6900313897.3 , 58652668127.05) = -1636353016
GDP: 90445390920 rand(1808907818.4 , 15375716456.4) = -165604705
GDP: 3412849650 rand(68256993 , 580184440.5) = 347516196
GDP: 2939111315 rand(58782226.3 , 499648923.55) = 119181875
GDP: 26369065 rand(527381.3 , 4482741.05) = 3632416
GDP: 215838135 rand(4316762.7 , 36692482.95) = 28784811
GDP: 511763530 rand(10235270.6 , 86999800.1) = 39954394
GDP: 42416245 rand(848324.9 , 7210761.65) = 3974882
GDP: 75090235 rand(1501804.7 , 12765339.95) = 5201966
</code></pre>
<p>So why would a <code>rand()</code> of two positive numbers give a negative return?</p>
<p>Any help would be much appreciated!</p>
http://stackoverflow.com/questions/90184/pseudo-random-generator-assembler4Pseudo random generator, AssemblerTCJ2008-09-18T05:07:49Z2009-10-18T12:35:33Z
<p>Which "random" numbers generator algorithm is the best for an assembler program? Something easy, not a long piece of code.</p>
<p>Not external library allowed, just trying to keep it simple.</p>
<p>@<a href="#90284" rel="nofollow">Bill Barksdale</a>: I'm looking for an easy algorithm to use in a assembler program assigned in a course. </p>