rand_lcg 0.1.0

An implementation of the LCG family of PRNGs for educational purposes.
Documentation
1
2
3
4
5
6
7
8
9
//
// lib.rs
// Copyright (C) 2019 Malcolm Ramsay <malramsay64@gmail.com>
// Distributed under terms of the MIT license.
//

mod lcg;

pub use lcg::{ANSIC, CPP, RANDU};