https://github.com/limzykenneth/js-xorshift128p
https://github.com/limzykenneth/js-xorshift128p
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/limzykenneth/js-xorshift128p
- Owner: limzykenneth
- Created: 2023-12-24T21:43:19.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-24T22:00:35.000Z (over 2 years ago)
- Last Synced: 2025-03-18T14:51:17.514Z (over 1 year ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Xorshift128+ proof of concept
This is a proof of concept implementation of the xorshift128+ random number generator implemented in JS with the corresponding reference implementation in C. The JS implementation is taken from [xorshift](https://github.com/AndreasMadsen/xorshift). The C implementation is taken from [Wikipedia](https://en.wikipedia.org/wiki/Xorshift).