/////////////////////////////////////////////////////////////////// // 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 #if (defined(__GNUC__) && defined(__AVR__) && (__GNUC__ < 10)) #define WIDE_INTEGER_EXAMPLE003_CONSTEXPR_OR_CONST const // NOLINT(cppcoreguidelines-macro-usage) #define WIDE_INTEGER_EXAMPLE003_CONSTEXPR_IS_COMPILE_TIME_CONSTANT 0 // NOLINT(cppcoreguidelines-macro-usage) #else #define WIDE_INTEGER_EXAMPLE003_CONSTEXPR_OR_CONST constexpr // NOLINT(cppcoreguidelines-macro-usage) #define WIDE_INTEGER_EXAMPLE003_CONSTEXPR_IS_COMPILE_TIME_CONSTANT 1 // NOLINT(cppcoreguidelines-macro-usage) #endif #if defined(WIDE_INTEGER_NAMESPACE) auto WIDE_INTEGER_NAMESPACE::math::wide_integer::example003_sqrt() -> bool #else auto ::math::wide_integer::example003_sqrt() -> bool #endif { #if defined(WIDE_INTEGER_NAMESPACE) using WIDE_INTEGER_NAMESPACE::math::wide_integer::uint256_t; #else using ::math::wide_integer::uint256_t; #endif WIDE_INTEGER_EXAMPLE003_CONSTEXPR_OR_CONST uint256_t a("0xF4DF741DE58BCB2F37F18372026EF9CBCFC456CB80AF54D53BDEED78410065DE"); WIDE_INTEGER_EXAMPLE003_CONSTEXPR_OR_CONST uint256_t s = sqrt(a); WIDE_INTEGER_EXAMPLE003_CONSTEXPR_OR_CONST bool result_is_ok = (s == "0xFA5FE7853F1D4AD92BDF244179CA178B"); #if (defined(WIDE_INTEGER_EXAMPLE003_CONSTEXPR_IS_COMPILE_TIME_CONSTANT) \ && (WIDE_INTEGER_EXAMPLE003_CONSTEXPR_IS_COMPILE_TIME_CONSTANT == 1)) static_assert(result_is_ok, "Error: example003_sqrt not OK!"); #endif return result_is_ok; } // Enable this if you would like to activate this main() as a standalone example. #if defined(WIDE_INTEGER_STANDALONE_EXAMPLE003_SQRT) #if !defined(WIDE_INTEGER_DISABLE_IOSTREAM) #include #include #endif constexpr auto example_standalone_foodcafe = static_cast(UINT32_C(0xF00DCAFE)); extern "C" { extern volatile std::uint32_t example_standalone_result; auto example_run_standalone (void) -> bool; auto example_get_standalone_result(void) -> bool; auto example_run_standalone(void) -> bool { bool result_is_ok = true; for(unsigned i = 0U; i < 64U; ++i) { #if defined(WIDE_INTEGER_NAMESPACE) result_is_ok &= WIDE_INTEGER_NAMESPACE::math::wide_integer::example003_sqrt(); #else result_is_ok &= ::math::wide_integer::example003_sqrt(); #endif } example_standalone_result = static_cast ( result_is_ok ? example_standalone_foodcafe : static_cast(UINT32_C(0xFFFFFFFF)) ); #if !defined(WIDE_INTEGER_DISABLE_IOSTREAM) std::cout << "result_is_ok: " << std::boolalpha << result_is_ok << std::endl; #endif return result_is_ok; } auto example_get_standalone_result(void) -> bool { volatile auto result_is_ok = (example_standalone_result == static_cast(UINT32_C(0xF00DCAFE))); return result_is_ok; } } auto main() -> int { auto result_is_ok = true; result_is_ok = (::example_run_standalone () && result_is_ok); result_is_ok = (::example_get_standalone_result() && result_is_ok); return (result_is_ok ? 0 : -1); } extern "C" { volatile std::uint32_t example_standalone_result; } #endif