// 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 . use malachite_base::num::basic::floats::PrimitiveFloat; use malachite_base::num::basic::traits::NegativeInfinity; use malachite_base::num::float::NiceFloat; use malachite_base::test_util::generators::primitive_float_gen_var_9; use std::panic::catch_unwind; #[allow(clippy::approx_constant)] #[test] pub fn test_next_higher() { fn test(x: T, out: T) { assert_eq!(NiceFloat(x.next_higher()), NiceFloat(out)); } test::(f32::NEGATIVE_INFINITY, -f32::MAX_FINITE); test::(-f32::MAX_FINITE, -3.4028233e38); test::(-458.42188, -458.42184); test::(-10.0, -9.999999); test::(-core::f32::consts::PI, -3.1415925); test::(-1.0, -0.99999994); test::(-0.1, -0.099999994); test::(-f32::MIN_POSITIVE_NORMAL, -f32::MAX_SUBNORMAL); test::(-f32::MAX_SUBNORMAL, -1.1754941e-38); test::(-f32::MIN_POSITIVE_SUBNORMAL, -0.0); test::(-0.0, 0.0); test::(0.0, f32::MIN_POSITIVE_SUBNORMAL); test::(f32::MIN_POSITIVE_SUBNORMAL, 3.0e-45); test::(f32::MAX_SUBNORMAL, f32::MIN_POSITIVE_NORMAL); test::(f32::MIN_POSITIVE_NORMAL, 1.1754945e-38); test::(0.1, 0.10000001); test::(0.99999994, 1.0); test::(1.0, 1.0000001); test::(1.0000001, 1.0000002); test::(3.1415925, core::f32::consts::PI); test::(core::f32::consts::PI, 3.141593); test::(3.141593, 3.1415932); test::(10.0, 10.000001); test::(f32::MAX_FINITE, f32::INFINITY); test::(f64::NEGATIVE_INFINITY, -f64::MAX_FINITE); test::(-f64::MAX_FINITE, -1.7976931348623155e308); test::(-10.0, -9.999999999999998); test::(-core::f64::consts::PI, -3.1415926535897927); test::(-1.0, -0.9999999999999999); test::(-0.1, -0.09999999999999999); test::(-f64::MIN_POSITIVE_NORMAL, -f64::MAX_SUBNORMAL); test::(-f64::MAX_SUBNORMAL, -2.2250738585072004e-308); test::(-f64::MIN_POSITIVE_SUBNORMAL, -0.0); test::(-0.0, 0.0); test::(0.0, f64::MIN_POSITIVE_SUBNORMAL); test::(f64::MIN_POSITIVE_SUBNORMAL, 1.0e-323); test::(f64::MAX_SUBNORMAL, f64::MIN_POSITIVE_NORMAL); test::(f64::MIN_POSITIVE_NORMAL, 2.225073858507202e-308); test::(1.9261352099337372e-256, 1.9261352099337375e-256); test::(0.1, 0.10000000000000002); test::(0.9999999999999999, 1.0); test::(1.0, 1.0000000000000002); test::(1.0000000000000002, 1.0000000000000004); test::(3.1415926535897927, core::f64::consts::PI); test::(core::f64::consts::PI, 3.1415926535897936); test::(3.1415926535897936, 3.141592653589794); test::(10.0, 10.000000000000002); test::(f64::MAX_FINITE, f64::INFINITY); } fn next_higher_fail_helper() { assert_panic!(T::NAN.next_higher()); assert_panic!(T::INFINITY.next_higher()); } #[test] pub fn next_higher_fail() { apply_fn_to_primitive_floats!(next_higher_fail_helper); } fn next_higher_properties_helper() { primitive_float_gen_var_9::().test_properties(|x| { let y = x.next_higher(); assert_eq!( x.to_ordered_representation() + 1, y.to_ordered_representation() ); assert_eq!(NiceFloat(y.next_lower()), NiceFloat(x)); }); } #[test] fn next_higher_properties() { apply_fn_to_primitive_floats!(next_higher_properties_helper); }