}
-fn lognormal(n: i32) -> Vec<f64> {
- const NAME: &str = "Lognormal"; // mean of normal distribution (N)
- const MEAN: f64 = 0.0; // is unessential thanks to
- const STD: f64 = 1.0; // normalization, and std of N
- let dist = LogNormal::new(MEAN, STD).unwrap();
+fn lognormal(n: i32, std: f64) -> Vec<f64> {
+ const NAME: &str = "Lognormal";
+ const MEAN: f64 = 0.0; // mean is unessential thanks to
+ // normalization, and std of N
+ let dist = LogNormal::new(MEAN, std).unwrap();
let mut prio: Vec<f64> = Vec::new();
if DEBUG { eprint!("{}: ", NAME) }
for i in 1..n + 1 {
let num = ranked.len() as i32;
let _prio1 = delta(num);
let _prio2 = exp(num);
- let prio3 = lognormal(num);
+ let prio3 = lognormal(num, skew);
if DEBUG {
for l in ranked.iter() {