kaffe 0.2.0

Pytorch, but make it rust :)
Documentation
//! Module containing often used mathematical constants

/// INF = infinity
pub const INF: f32 = f32::INFINITY;

/// NAN= Not A Number
pub const NAN: f32 = f32::NAN;

/// E = Euler constant = 2.7182818...
pub const E: f32 = std::f32::consts::E;

/// MAX = max value an f32 can be
pub const MAX: f32 = f32::MAX;

/// MIN = min value an f32 can be
pub const MIN: f32 = f32::MIN;

/// f32 representation of the mathematical constant pi
pub const PI: f32 = std::f32::consts::PI;

/// INF = infinity
pub const INF64: f64 = f64::INFINITY;

/// NAN= Not A Number
pub const NAN64: f64 = f64::NAN;

/// E = Euler constant = 2.7182818...
pub const E64: f64 = std::f64::consts::E;

/// MAX = max value an f32 can be
pub const MAX64: f64 = f64::MAX;

/// MIN = min value an f32 can be
pub const MIN64: f64 = f64::MIN;

/// f32 representation of the mathematical constant pi
pub const PI64: f64 = std::f64::consts::PI;