Click here to Skip to main content
15,880,405 members
Everything / RNG

RNG

RNG

Great Reads

by Member 4201813
Jump forward/backward procedures for XorShift RNG explained step by step
by Member 4201813
Jump forward/backward procedures for XorShift RNG explained step by step
by Cryptonite
I keep reading articles on the web about how all random number generators on a computer are "pseudo" random, or "deterministic". Here I present an approach for nondeterministic number generation.
by Member 4201813
Jumping along the System.Random output sequence with logarithmic complexity

Latest Articles

by Member 4201813
How to calculate transition matrix for linear pseudo-random number generator manipulating its internal state
by Member 4201813
Jumping along the System.Random output sequence with logarithmic complexity
by Member 4201813
Jump forward/backward procedures for XorShift RNG explained step by step
by Member 4201813
Jump forward/backward procedures for XorShift RNG explained step by step

All Articles

Sort by Score

RNG 

24 Apr 2020 by Member 4201813
Jump forward/backward procedures for XorShift RNG explained step by step
14 Apr 2020 by Member 4201813
Jump forward/backward procedures for XorShift RNG explained step by step
4 May 2020 by Patrice T
Quote: And when someone will have 0 or less HP, program should stop running. But your code is wrong. This code: while (hp1 > dmg2 || hp2 > dmg1) loop as long as 1 of both objects have hp remaining. And this code: while (hp1 > dmg2 && hp2 >...
8 Oct 2018 by Dave Kreskowiak
Quote: I don't want this app to be a game, so I don't need it to have any game loops or sprites or anything gamelike. Ummm...competing against other players is called a "game". Yes, you DO need a game loop unless your game is only going to be a single turn for each player. A game loop has...
4 May 2020 by sOwlO
Hello. My idea is 2 obejcts shooting against each other. And when someone will have 0 or less HP, program should stop running. And I made it. It is working, but there is one thing which I should repair and cant figure it out! My code looks...
18 Nov 2014 by Cryptonite
I keep reading articles on the web about how all random number generators on a computer are "pseudo" random, or "deterministic". Here I present an approach for nondeterministic number generation.
5 May 2020 by Member 4201813
Jumping along the System.Random output sequence with logarithmic complexity
21 Sep 2023 by Member 4201813
How to calculate transition matrix for linear pseudo-random number generator manipulating its internal state
5 Nov 2012 by Jacob F. W.
This post discusses 5 degrees of Random Number Generators.
30 Jul 2014 by Grant Curell
Is the XCOM PRNG broken?
5 Mar 2018 by Dharmateja Challa
This article is about generating random data using Trusted Platform Module in Windows 10 and testing its randomness using dieharder test suite.
8 Oct 2018 by CoderKlip
Hi everyone, I am new to coding. I have very basic knowledge of Java but not much else. I am wanting to create an app that allows you to compete against other users with rng based 'combat' I guess you could call it. I don't want this app to be a game, so I don't need it to have any game loops...