Crates io (#76)

* crates re-organisation

* fixed typo in layout & added test for vmp_apply

* updated dependencies
This commit is contained in:
Jean-Philippe Bossuat
2025-08-18 11:16:27 +02:00
committed by GitHub
parent dce4d82706
commit a1de248567
415 changed files with 32933 additions and 1889 deletions

62
poulpy-hal/src/source.rs Normal file
View File

@@ -0,0 +1,62 @@
use rand_chacha::{ChaCha8Rng, rand_core::SeedableRng};
use rand_core::RngCore;
const MAXF64: f64 = 9007199254740992.0;
pub struct Source {
source: ChaCha8Rng,
}
impl Source {
pub fn new(seed: [u8; 32]) -> Source {
Source {
source: ChaCha8Rng::from_seed(seed),
}
}
pub fn branch(&mut self) -> ([u8; 32], Self) {
let seed: [u8; 32] = self.new_seed();
(seed, Source::new(seed))
}
pub fn new_seed(&mut self) -> [u8; 32] {
let mut seed: [u8; 32] = [0u8; 32];
self.fill_bytes(&mut seed);
seed
}
#[inline(always)]
pub fn next_u64n(&mut self, max: u64, mask: u64) -> u64 {
let mut x: u64 = self.next_u64() & mask;
while x >= max {
x = self.next_u64() & mask;
}
x
}
#[inline(always)]
pub fn next_f64(&mut self, min: f64, max: f64) -> f64 {
min + ((self.next_u64() << 11 >> 11) as f64) / MAXF64 * (max - min)
}
pub fn next_i64(&mut self) -> i64 {
self.next_u64() as i64
}
}
impl RngCore for Source {
#[inline(always)]
fn next_u32(&mut self) -> u32 {
self.source.next_u32()
}
#[inline(always)]
fn next_u64(&mut self) -> u64 {
self.source.next_u64()
}
#[inline(always)]
fn fill_bytes(&mut self, bytes: &mut [u8]) {
self.source.fill_bytes(bytes)
}
}