// 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::unsigneds::PrimitiveUnsigned;
use malachite_base::test_util::generators::{
unsigned_gen_var_9, unsigned_pair_gen_var_17, unsigned_triple_gen_var_11,
};
use std::panic::catch_unwind;
fn mod_power_of_2_square_helper() {
let test = |x: T, pow: u64, out| {
assert_eq!(x.mod_power_of_2_square(pow), out);
let mut mut_x = x;
mut_x.mod_power_of_2_square_assign(pow);
assert_eq!(mut_x, out);
};
test(T::ZERO, 0, T::ZERO);
test(T::ZERO, 2, T::ZERO);
test(T::ONE, 2, T::ONE);
test(T::TWO, 2, T::ZERO);
test(T::TWO, 3, T::exact_from(4));
test(T::exact_from(5), 3, T::ONE);
test(T::exact_from(100), 8, T::exact_from(16));
}
#[test]
fn test_mod_power_of_2_square() {
apply_fn_to_unsigneds!(mod_power_of_2_square_helper);
}
fn mod_power_of_2_square_fail_helper() {
assert_panic!(T::ONE.mod_power_of_2_square(0));
assert_panic!(T::from(200u8).mod_power_of_2_square(7));
}
#[test]
fn mod_power_of_2_square_fail() {
apply_fn_to_unsigneds!(mod_power_of_2_square_fail_helper);
}
fn mod_power_of_2_square_assign_fail_helper() {
assert_panic!({
let mut x = T::ONE;
x.mod_power_of_2_square_assign(0);
});
assert_panic!({
let mut x = T::from(200u8);
x.mod_power_of_2_square_assign(7);
});
}
#[test]
fn mod_power_of_2_square_assign_fail() {
apply_fn_to_unsigneds!(mod_power_of_2_square_assign_fail_helper);
}
fn mod_power_of_2_square_properties_helper() {
unsigned_pair_gen_var_17::().test_properties(|(x, pow)| {
assert!(x.mod_power_of_2_is_reduced(pow));
let square = x.mod_power_of_2_square(pow);
assert!(square.mod_power_of_2_is_reduced(pow));
let mut x_alt = x;
x_alt.mod_power_of_2_square_assign(pow);
assert_eq!(x_alt, square);
assert_eq!(x.mod_power_of_2_pow(2, pow), x.mod_power_of_2_mul(x, pow));
assert_eq!(x.mod_power_of_2_neg(pow).mod_power_of_2_square(pow), square);
});
unsigned_gen_var_9::().test_properties(|pow| {
assert_eq!(T::ZERO.mod_power_of_2_square(pow), T::ZERO);
if pow != 0 {
assert_eq!(T::ONE.mod_power_of_2_square(pow), T::ONE);
}
});
unsigned_triple_gen_var_11::().test_properties(|(x, y, pow)| {
assert_eq!(
x.mod_power_of_2_mul(y, pow).mod_power_of_2_square(pow),
x.mod_power_of_2_square(pow)
.mod_power_of_2_mul(y.mod_power_of_2_square(pow), pow)
);
});
}
#[test]
fn mod_power_of_2_square_properties() {
apply_fn_to_unsigneds!(mod_power_of_2_square_properties_helper);
}