pub fn latin_hypercube(n: usize, dims: usize, seed: u64) -> Vec<Vec<f64>>Expand description
An n x dims Latin hypercube: every dimension is exactly stratified
(one point per stratum), with independent random pairings across
dimensions. Deterministic per seed.