/////////////////////////////////////////////////////////////////// // Copyright Christopher Kormanyos 2018 - 2025. // // 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(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 constexpr uint256_t a("0xF4DF741DE58BCB2F37F18372026EF9CBCFC456CB80AF54D53BDEED78410065DE"); constexpr uint256_t s = sqrt(a); constexpr bool result_is_ok = (s == "0xFA5FE7853F1D4AD92BDF244179CA178B"); static_assert(result_is_ok, "Error: example003_sqrt not OK!"); 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 () -> bool; auto example_get_standalone_result() noexcept -> bool; auto example_run_standalone() -> 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() noexcept -> bool { return { example_standalone_result == static_cast(UINT32_C(0xF00DCAFE)) }; } } 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