Depends on the setting you choose. In CVBJ you can choose to have biased shoes or not. It's up to you!dasenbrj said:How much difference is there in count trends in programs like CV verses the real thing? The cheaper ones, like free smartphone apps, are very unrealistic, but is there a difference in the high end stuff?
Wouldn't any computer simulation use an RNG in one way or another?Sonny said:Most of the cheap apps use a RNG that is fine for practice but not suitable for simulation.
-Sonny-
Yes, but many apps use a simple one that is not good enough for simulations. They are "random enough" for practicing but after millions/billions of hands the results will become skewed. For example, the default RNG for most programs (like Excel and most programming languages) is not good enough for simulations.Gamblor said:Wouldn't any computer simulation use an RNG in one way or another?
What about the Java method Math.random()?Sonny said:Yes, but many apps use a simple one that is not good enough for simulations. They are "random enough" for practicing but after millions/billions of hands the results will become skewed. For example, the default RNG for most programs (like Excel and most programming languages) is not good enough for simulations.
-Sonny-
No, that function uses a linear congruential generator which is not very good for simulations.Wookets said:What about the Java method Math.random()?
Yikes, I have some revisions to make. Any suggestions for an RGN in the Java language?Sonny said:No, that function uses a linear congruential generator which is not very good for simulations.
-Sonny-
Right, gotcha, thanks for the clarification Sonny.Sonny said:Yes, but many apps use a simple one that is not good enough for simulations. They are "random enough" for practicing but after millions/billions of hands the results will become skewed. For example, the default RNG for most programs (like Excel and most programming languages) is not good enough for simulations.
-Sonny-
Simplest way for you to change it: http://www.cs.gmu.edu/~sean/research/mersenne/MersenneTwister.javaWookets said:Yikes, I have some revisions to make. Any suggestions for an RGN in the Java language?