https://github.com/mscharley/rust-xoroshiro128
xoroshiro128+ implementation in Rust
https://github.com/mscharley/rust-xoroshiro128
crates prng random-number-generators rng rust xoroshiro
Last synced: 6 months ago
JSON representation
xoroshiro128+ implementation in Rust
- Host: GitHub
- URL: https://github.com/mscharley/rust-xoroshiro128
- Owner: mscharley
- License: mit
- Created: 2016-11-25T13:37:24.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-06-05T06:09:18.000Z (over 5 years ago)
- Last Synced: 2025-03-22T21:41:54.451Z (7 months ago)
- Topics: crates, prng, random-number-generators, rng, rust, xoroshiro
- Language: Rust
- Homepage: https://docs.rs/xoroshiro128/
- Size: 1.31 MB
- Stars: 10
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# rust-xoroshiro128
[](https://circleci.com/gh/mscharley/rust-xoroshiro128/tree/master)
[][crates.io]**Source:** [https://github.com/mscharley/rust-xoroshiro128](https://github.com/mscharley/rust-xoroshiro128)
**Author:** Matthew Scharley
**Contributors:** [See contributors on GitHub][gh-contrib]
**Bugs/Support:** [Github Issues][gh-issues]
**Copyright:** 2016
**License:** [MIT license][license]
**Status:** Active## Synopsis
`xoroshiro128` is a small `rand`-compatible library to generate psuedo-random numbers using the xoroshiro128+ alogrithm
originally proposed by David Blackman and Sebastiano Vigna. [See their website for the details and a good writeup.][xoroshiro]## Installation
[`xoroshiro128` is available on crates.io under the same name.][crates.io]
## Usage
[Usage and other documentation is available in the official documentation.][documentation]
[gh-contrib]: https://github.com/mscharley/rust-xoroshiro128/graphs/contributors
[gh-issues]: https://github.com/mscharley/rust-xoroshiro128/issues
[license]: https://github.com/mscharley/rust-xoroshiro128/blob/master/LICENSE.md
[xoroshiro]: http://xoroshiro.di.unimi.it/
[documentation]: https://docs.rs/xoroshiro128
[crates.io]: https://crates.io/crates/xoroshiro128