Skip to content

Instantly share code, notes, and snippets.

View coderespawn's full-sized avatar

Ali Akbar coderespawn

View GitHub Profile
@coderespawn
coderespawn / gist:5524679
Created May 6, 2013 11:44
Fast PRNG in dart
class FastRandom {
int seed;
FastRandom() {
seed = new DateTime.now().millisecondsSinceEpoch & 0x7FFF;
}
int nextInt() {
seed = (214013 * seed + 2531011) & 0x7FFFFFFF;
return (seed >> 16) & 0x7FFF;
}