f64.rs 8.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

//! Operations and constants for 64-bits floats (`f64` type)

13
// FIXME: MIN_VALUE and MAX_VALUE literals are parsed as -inf and inf #14353
A
Aaron Turon 已提交
14
#![allow(overflowing_literals)]
15

B
Brian Anderson 已提交
16
#![stable(feature = "rust1", since = "1.0.0")]
17

A
Alex Crichton 已提交
18
use prelude::v1::*;
19

20
use intrinsics;
21
use mem;
T
Tobias Bucher 已提交
22
use num::FpCategory as Fp;
23
use num::{Float, ParseFloatError};
A
Alex Crichton 已提交
24

A
Aaron Turon 已提交
25
#[stable(feature = "rust1", since = "1.0.0")]
26
#[allow(missing_docs)]
27
pub const RADIX: u32 = 2;
28

A
Aaron Turon 已提交
29
#[stable(feature = "rust1", since = "1.0.0")]
30
#[allow(missing_docs)]
31
pub const MANTISSA_DIGITS: u32 = 53;
A
Aaron Turon 已提交
32
#[stable(feature = "rust1", since = "1.0.0")]
33
#[allow(missing_docs)]
34
pub const DIGITS: u32 = 15;
35

B
Brian Anderson 已提交
36
#[stable(feature = "rust1", since = "1.0.0")]
37
#[allow(missing_docs)]
A
Alex Crichton 已提交
38
pub const EPSILON: f64 = 2.2204460492503131e-16_f64;
39

40 41 42 43 44 45 46 47 48 49
/// Smallest finite f64 value
#[stable(feature = "rust1", since = "1.0.0")]
pub const MIN: f64 = -1.7976931348623157e+308_f64;
/// Smallest positive, normalized f64 value
#[stable(feature = "rust1", since = "1.0.0")]
pub const MIN_POSITIVE: f64 = 2.2250738585072014e-308_f64;
/// Largest finite f64 value
#[stable(feature = "rust1", since = "1.0.0")]
pub const MAX: f64 = 1.7976931348623157e+308_f64;

A
Aaron Turon 已提交
50
#[stable(feature = "rust1", since = "1.0.0")]
51
#[allow(missing_docs)]
52
pub const MIN_EXP: i32 = -1021;
A
Aaron Turon 已提交
53
#[stable(feature = "rust1", since = "1.0.0")]
54
#[allow(missing_docs)]
55
pub const MAX_EXP: i32 = 1024;
56

A
Aaron Turon 已提交
57
#[stable(feature = "rust1", since = "1.0.0")]
58
#[allow(missing_docs)]
59
pub const MIN_10_EXP: i32 = -307;
A
Aaron Turon 已提交
60
#[stable(feature = "rust1", since = "1.0.0")]
61
#[allow(missing_docs)]
62
pub const MAX_10_EXP: i32 = 308;
63

B
Brian Anderson 已提交
64
#[stable(feature = "rust1", since = "1.0.0")]
65
#[allow(missing_docs)]
A
Alex Crichton 已提交
66
pub const NAN: f64 = 0.0_f64/0.0_f64;
B
Brian Anderson 已提交
67
#[stable(feature = "rust1", since = "1.0.0")]
68
#[allow(missing_docs)]
A
Alex Crichton 已提交
69
pub const INFINITY: f64 = 1.0_f64/0.0_f64;
B
Brian Anderson 已提交
70
#[stable(feature = "rust1", since = "1.0.0")]
71
#[allow(missing_docs)]
A
Alex Crichton 已提交
72
pub const NEG_INFINITY: f64 = -1.0_f64/0.0_f64;
73

A
Aaron Turon 已提交
74 75
/// Basic mathematial constants.
#[stable(feature = "rust1", since = "1.0.0")]
76 77 78 79
pub mod consts {
    // FIXME: replace with mathematical constants from cmath.

    /// Archimedes' constant
A
Aaron Turon 已提交
80
    #[stable(feature = "rust1", since = "1.0.0")]
A
Alex Crichton 已提交
81
    pub const PI: f64 = 3.14159265358979323846264338327950288_f64;
82 83

    /// pi/2.0
A
Aaron Turon 已提交
84
    #[stable(feature = "rust1", since = "1.0.0")]
A
Alex Crichton 已提交
85
    pub const FRAC_PI_2: f64 = 1.57079632679489661923132169163975144_f64;
86 87

    /// pi/3.0
A
Aaron Turon 已提交
88
    #[stable(feature = "rust1", since = "1.0.0")]
A
Alex Crichton 已提交
89
    pub const FRAC_PI_3: f64 = 1.04719755119659774615421446109316763_f64;
90 91

    /// pi/4.0
A
Aaron Turon 已提交
92
    #[stable(feature = "rust1", since = "1.0.0")]
A
Alex Crichton 已提交
93
    pub const FRAC_PI_4: f64 = 0.785398163397448309615660845819875721_f64;
94 95

    /// pi/6.0
A
Aaron Turon 已提交
96
    #[stable(feature = "rust1", since = "1.0.0")]
A
Alex Crichton 已提交
97
    pub const FRAC_PI_6: f64 = 0.52359877559829887307710723054658381_f64;
98 99

    /// pi/8.0
A
Aaron Turon 已提交
100
    #[stable(feature = "rust1", since = "1.0.0")]
A
Alex Crichton 已提交
101
    pub const FRAC_PI_8: f64 = 0.39269908169872415480783042290993786_f64;
102 103

    /// 1.0/pi
A
Aaron Turon 已提交
104
    #[stable(feature = "rust1", since = "1.0.0")]
A
Alex Crichton 已提交
105
    pub const FRAC_1_PI: f64 = 0.318309886183790671537767526745028724_f64;
106 107

    /// 2.0/pi
A
Aaron Turon 已提交
108
    #[stable(feature = "rust1", since = "1.0.0")]
A
Alex Crichton 已提交
109
    pub const FRAC_2_PI: f64 = 0.636619772367581343075535053490057448_f64;
110 111

    /// 2.0/sqrt(pi)
A
Aaron Turon 已提交
112 113 114
    #[stable(feature = "rust1", since = "1.0.0")]
    pub const FRAC_2_SQRT_PI: f64 = 1.12837916709551257389615890312154517_f64;

115
    /// sqrt(2.0)
A
Aaron Turon 已提交
116 117 118
    #[stable(feature = "rust1", since = "1.0.0")]
    pub const SQRT_2: f64 = 1.41421356237309504880168872420969808_f64;

119
    /// 1.0/sqrt(2.0)
A
Aaron Turon 已提交
120 121 122
    #[stable(feature = "rust1", since = "1.0.0")]
    pub const FRAC_1_SQRT_2: f64 = 0.707106781186547524400844362104849039_f64;

123
    /// Euler's number
A
Aaron Turon 已提交
124
    #[stable(feature = "rust1", since = "1.0.0")]
A
Alex Crichton 已提交
125
    pub const E: f64 = 2.71828182845904523536028747135266250_f64;
126 127

    /// log2(e)
A
Aaron Turon 已提交
128
    #[stable(feature = "rust1", since = "1.0.0")]
A
Alex Crichton 已提交
129
    pub const LOG2_E: f64 = 1.44269504088896340735992468100189214_f64;
130 131

    /// log10(e)
A
Aaron Turon 已提交
132
    #[stable(feature = "rust1", since = "1.0.0")]
A
Alex Crichton 已提交
133
    pub const LOG10_E: f64 = 0.434294481903251827651128918916605082_f64;
134 135

    /// ln(2.0)
A
Aaron Turon 已提交
136
    #[stable(feature = "rust1", since = "1.0.0")]
A
Alex Crichton 已提交
137
    pub const LN_2: f64 = 0.693147180559945309417232121458176568_f64;
138 139

    /// ln(10.0)
A
Aaron Turon 已提交
140
    #[stable(feature = "rust1", since = "1.0.0")]
A
Alex Crichton 已提交
141
    pub const LN_10: f64 = 2.30258509299404568401799145468436421_f64;
142 143
}

144 145 146 147 148 149 150 151 152 153
impl Float for f64 {
    #[inline]
    fn nan() -> f64 { NAN }

    #[inline]
    fn infinity() -> f64 { INFINITY }

    #[inline]
    fn neg_infinity() -> f64 { NEG_INFINITY }

154 155 156
    #[inline]
    fn zero() -> f64 { 0.0 }

157 158 159
    #[inline]
    fn neg_zero() -> f64 { -0.0 }

160 161 162
    #[inline]
    fn one() -> f64 { 1.0 }

163 164
    from_str_radix_float_impl! { f64 }

165
    /// Returns `true` if the number is NaN.
166 167 168
    #[inline]
    fn is_nan(self) -> bool { self != self }

169
    /// Returns `true` if the number is infinite.
170 171 172 173 174
    #[inline]
    fn is_infinite(self) -> bool {
        self == Float::infinity() || self == Float::neg_infinity()
    }

175
    /// Returns `true` if the number is neither infinite or NaN.
176 177 178 179 180
    #[inline]
    fn is_finite(self) -> bool {
        !(self.is_nan() || self.is_infinite())
    }

181
    /// Returns `true` if the number is neither zero, infinite, subnormal or NaN.
182 183
    #[inline]
    fn is_normal(self) -> bool {
T
Tobias Bucher 已提交
184
        self.classify() == Fp::Normal
185 186 187 188 189
    }

    /// Returns the floating point category of the number. If only one property
    /// is going to be tested, it is generally faster to use the specific
    /// predicate instead.
T
Tobias Bucher 已提交
190
    fn classify(self) -> Fp {
A
Alex Crichton 已提交
191 192
        const EXP_MASK: u64 = 0x7ff0000000000000;
        const MAN_MASK: u64 = 0x000fffffffffffff;
193 194 195

        let bits: u64 = unsafe { mem::transmute(self) };
        match (bits & MAN_MASK, bits & EXP_MASK) {
T
Tobias Bucher 已提交
196 197 198 199 200
            (0, 0)        => Fp::Zero,
            (_, 0)        => Fp::Subnormal,
            (0, EXP_MASK) => Fp::Infinite,
            (_, EXP_MASK) => Fp::Nan,
            _             => Fp::Normal,
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
        }
    }

    /// Returns the mantissa, exponent and sign as integers.
    fn integer_decode(self) -> (u64, i16, i8) {
        let bits: u64 = unsafe { mem::transmute(self) };
        let sign: i8 = if bits >> 63 == 0 { 1 } else { -1 };
        let mut exponent: i16 = ((bits >> 52) & 0x7ff) as i16;
        let mantissa = if exponent == 0 {
            (bits & 0xfffffffffffff) << 1
        } else {
            (bits & 0xfffffffffffff) | 0x10000000000000
        };
        // Exponent bias + mantissa shift
        exponent -= 1023 + 52;
        (mantissa, exponent, sign)
    }

219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
    /// Computes the absolute value of `self`. Returns `Float::nan()` if the
    /// number is `Float::nan()`.
    #[inline]
    fn abs(self) -> f64 {
        unsafe { intrinsics::fabsf64(self) }
    }

    /// Returns a number that represents the sign of `self`.
    ///
    /// - `1.0` if the number is positive, `+0.0` or `Float::infinity()`
    /// - `-1.0` if the number is negative, `-0.0` or `Float::neg_infinity()`
    /// - `Float::nan()` if the number is `Float::nan()`
    #[inline]
    fn signum(self) -> f64 {
        if self.is_nan() {
            Float::nan()
        } else {
            unsafe { intrinsics::copysignf64(1.0, self) }
        }
    }

    /// Returns `true` if `self` is positive, including `+0.0` and
    /// `Float::infinity()`.
    #[inline]
    fn is_positive(self) -> bool {
        self > 0.0 || (1.0 / self) == Float::infinity()
    }

    /// Returns `true` if `self` is negative, including `-0.0` and
    /// `Float::neg_infinity()`.
    #[inline]
    fn is_negative(self) -> bool {
        self < 0.0 || (1.0 / self) == Float::neg_infinity()
    }

254
    /// Returns the reciprocal (multiplicative inverse) of the number.
255 256 257 258 259 260 261 262
    #[inline]
    fn recip(self) -> f64 { 1.0 / self }

    #[inline]
    fn powi(self, n: i32) -> f64 {
        unsafe { intrinsics::powif64(self, n) }
    }

263
    /// Converts to degrees, assuming the number is in radians.
264
    #[inline]
A
Aaron Turon 已提交
265
    fn to_degrees(self) -> f64 { self * (180.0f64 / consts::PI) }
266

267
    /// Converts to radians, assuming the number is in degrees.
268 269
    #[inline]
    fn to_radians(self) -> f64 {
A
Aaron Turon 已提交
270
        let value: f64 = consts::PI;
271 272 273
        self * (value / 180.0)
    }
}