Skip to main content

OMEGA

Constant OMEGA 

Source
pub const OMEGA: f64 = 0.567_143_290_409_783_873;
Expand description

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);