1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
// Copyright © 2024 Mikhail Hogrefe
//
// This file is part of Malachite.
//
// Malachite is free software: you can redistribute it and/or modify it under the terms of the GNU
// Lesser General Public License (LGPL) as published by the Free Software Foundation; either version
// 3 of the License, or (at your option) any later version. See <https://www.gnu.org/licenses/>.
use crate::Rational;
use malachite_base::num::basic::traits::Zero;
use malachite_base::num::conversion::traits::{ConvertibleFrom, IntegerMantissaAndExponent};
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub struct RationalFromPrimitiveFloatError;
macro_rules! float_impls {
($f: ident) => {
impl TryFrom<$f> for Rational {
type Error = RationalFromPrimitiveFloatError;
/// Converts a primitive float to the equivalent [`Rational`]. If the floating point
/// value is `NaN` or infinite, and error is returned.
///
/// This conversion is literal. For example, `Rational::try_from(0.1f32)` evaluates to
/// Some($13421773/134217728$). If you want $1/10$ instead, use
/// [`try_from_float_simplest`](Rational::try_from_float_simplest); that function
/// returns the simplest [`Rational`] that rounds to the specified float.
///
/// # Worst-case complexity
/// $T(n) = O(n)$
///
/// $M(n) = O(n)$
///
/// where $T$ is time, $M$ is additional memory, and $n$ is
/// `value.sci_exponent().abs()`.
///
/// # Examples
/// See [here](super::from_primitive_float#try_from).
fn try_from(value: $f) -> Result<Rational, Self::Error> {
if !value.is_finite() {
Err(RationalFromPrimitiveFloatError)
} else if value == 0.0 {
Ok(Rational::ZERO)
} else {
let (mantissa, exponent) = value.integer_mantissa_and_exponent();
let x = Rational::from(mantissa) << exponent;
Ok(if value > 0.0 { x } else { -x })
}
}
}
impl ConvertibleFrom<$f> for Rational {
/// Determines whether a primitive float can be converted to a [`Rational`]. (It can if
/// it is finite.)
///
/// # Worst-case complexity
/// Constant time and additional memory.
///
/// # Examples
/// See [here](super::from_primitive_float#convertible_from).
fn convertible_from(x: $f) -> bool {
x.is_finite()
}
}
};
}
apply_to_primitive_floats!(float_impls);