// 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::integers::PrimitiveInt; use malachite_base::num::basic::signeds::PrimitiveSigned; use malachite_base::num::basic::unsigneds::PrimitiveUnsigned; use malachite_base::test_util::generators::{signed_pair_gen, unsigned_pair_gen_var_27}; #[test] fn test_saturating_sub() { fn test(x: T, y: T, out: T) { assert_eq!(x.saturating_sub(y), out); let mut x = x; x.saturating_sub_assign(y); assert_eq!(x, out); } test::(456, 123, 333); test::(123, 200, 0); test::(123, -456, 579); test::(123, -45, 127); test::(-123, 45, -128); } fn saturating_sub_properties_helper_unsigned() { unsigned_pair_gen_var_27::().test_properties(|(x, y)| { let mut diff = x; diff.saturating_sub_assign(y); assert_eq!(diff, x.saturating_sub(y)); assert!(diff <= x); if diff > T::ZERO { assert_eq!(diff, x - y); } }); } fn saturating_sub_properties_helper_signed() { signed_pair_gen::().test_properties(|(x, y)| { let mut diff = x; diff.saturating_sub_assign(y); assert_eq!(diff, x.saturating_sub(y)); if diff > T::MIN && diff < T::MAX { assert_eq!(diff, x - y); } }); } #[test] fn saturating_sub_properties() { apply_fn_to_unsigneds!(saturating_sub_properties_helper_unsigned); apply_fn_to_signeds!(saturating_sub_properties_helper_signed); }