/////////////////////////////////////////////////////////////////// // Copyright Christopher Kormanyos 2018 - 2024. // // Distributed under the Boost Software License, // // Version 1.0. (See accompanying file LICENSE_1_0.txt // // or copy at http://www.boost.org/LICENSE_1_0.txt) // /////////////////////////////////////////////////////////////////// #include #include #include #if defined(WIDE_INTEGER_NAMESPACE) auto WIDE_INTEGER_NAMESPACE::math::wide_integer::example011_uint24_t() -> bool #else auto ::math::wide_integer::example011_uint24_t() -> bool #endif { #if defined(WIDE_INTEGER_NAMESPACE) using uint24_t = WIDE_INTEGER_NAMESPACE::math::wide_integer::uintwide_t(UINT32_C(24)), std::uint8_t>; #else using uint24_t = ::math::wide_integer::uintwide_t(UINT32_C(24)), std::uint8_t>; #endif #if defined(WIDE_INTEGER_NAMESPACE) using distribution_type = WIDE_INTEGER_NAMESPACE::math::wide_integer::uniform_int_distribution(UINT32_C(24)), typename uint24_t::limb_type>; #else using distribution_type = ::math::wide_integer::uniform_int_distribution(UINT32_C(24)), typename uint24_t::limb_type>; #endif using random_engine_type = std::linear_congruential_engine; random_engine_type generator(UINT32_C(0xDEADBEEF)); // NOLINT(cert-msc32-c,cert-msc51-cpp) distribution_type distribution; const auto a32 = static_cast(distribution(generator)); const auto b32 = static_cast(distribution(generator)); const uint24_t a(a32); const uint24_t b(b32); const uint24_t c_add = (a + b); const uint24_t c_sub = (a - b); const uint24_t c_mul = (a * b); const uint24_t c_div = (a / b); const auto result_is_ok = ( ( (c_add == static_cast(static_cast(a32 + b32) & UINT32_C(0x00FFFFFF))) && (c_sub == static_cast(static_cast(a32 - b32) & UINT32_C(0x00FFFFFF))) && (c_mul == static_cast(static_cast(a32 * b32) & UINT32_C(0x00FFFFFF))) && (c_div == static_cast(static_cast(a32 / b32) & UINT32_C(0x00FFFFFF)))) && ( (static_cast(c_add) == static_cast(static_cast(a32 + b32) & UINT32_C(0x00FFFFFF))) && (static_cast(c_sub) == static_cast(static_cast(a32 - b32) & UINT32_C(0x00FFFFFF))) && (static_cast(c_mul) == static_cast(static_cast(a32 * b32) & UINT32_C(0x00FFFFFF))) && (static_cast(c_div) == static_cast(static_cast(a32 / b32) & UINT32_C(0x00FFFFFF))))); return result_is_ok; } // Enable this if you would like to activate this main() as a standalone example. #if defined(WIDE_INTEGER_STANDALONE_EXAMPLE011_UINT24_T) #include #include auto main() -> int { #if defined(WIDE_INTEGER_NAMESPACE) const auto result_is_ok = WIDE_INTEGER_NAMESPACE::math::wide_integer::example011_uint24_t(); #else const auto result_is_ok = ::math::wide_integer::example011_uint24_t(); #endif std::cout << "result_is_ok: " << std::boolalpha << result_is_ok << std::endl; return (result_is_ok ? 0 : -1); } #endif