pub const OMEGA: f64 = 0.567_143_290_409_783_873;
The omega constant (Ω).
Fulfills the equation Ωe^Ω = 1:
use lambert_w::OMEGA; use approx::assert_abs_diff_eq; assert_abs_diff_eq!(OMEGA * f64::exp(OMEGA), 1.0);