Add Hardware Abstraction Layer (#56)

This commit is contained in:
Jean-Philippe Bossuat
2025-08-08 19:22:42 +02:00
committed by GitHub
parent 833520b163
commit 0e0745065e
194 changed files with 17397 additions and 11955 deletions

View File

@@ -1,7 +0,0 @@
use rand_distr::{Distribution, Normal, Binomial};
pub enum Distributions{
Binonial(Binomial),
Normal(Normal<f64>),
Ternary()
}

View File

@@ -1,5 +1,4 @@
use rand_chacha::ChaCha8Rng;
use rand_chacha::rand_core::SeedableRng;
use rand_chacha::{ChaCha8Rng, rand_core::SeedableRng};
use rand_core::RngCore;
const MAXF64: f64 = 9007199254740992.0;