Skip to content
/ mtwist Public

Concise, tested Mersenne Twister in CoffeeScript/JavaScript

Notifications You must be signed in to change notification settings

jawj/mtwist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

4e7e3f1 · May 26, 2024

History

20 Commits
Dec 10, 2021
Jun 17, 2021
May 26, 2024
Dec 10, 2021
Dec 10, 2021
Dec 10, 2021
Dec 10, 2021
Dec 10, 2021
Dec 10, 2021
Dec 10, 2021
Dec 10, 2021
Dec 10, 2021
Dec 10, 2021

Repository files navigation

mtwist

This is a concise implementation of the Mersenne Twister Pseudo-Random Number Generator (PRNG) for JavaScript.

The library:

The Mersenne Twister is not a cutting-edge PRNG. It is not cryptographically secure. It is very widely used, being the default PRNG for Excel, R, Python, Ruby and others. It is not without flaws.

Why would I use this?

  • The key use case is for reproducible pseudo-random sequences, which you get by manually seeding your PRNG
  • You could also use this because you want your random numbers generated the same way across all browsers and JavaScript engines

How do I use this?

x = Math.random();

becomes

import MersenneTwister from 'mtwist';

seed = 1234567890;  // an integer between 0 and 4294967295
m = new MersenneTwister(seed);

x = m.random();

Methods to produce evenly distributed integers in the ranges [0,n) and [m,n] are also provided.

For details, see index.ts.

Licence

© Copyright 2014 – 2021 George MacKerron and released under the MIT Licence.

About

Concise, tested Mersenne Twister in CoffeeScript/JavaScript

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published