ferritin_plms/esm/utils/constants/
mod.rs

1
2
3
4
5
6
7
8
9
pub mod esm3;
pub mod models;

fn square_root(x: f64) -> f64 {
    x.sqrt()
}

// pub const SQRT_3: f64 = square_root(3.0);
pub const SQRT_3: f64 = 1.7320508075688772;