-
Notifications
You must be signed in to change notification settings - Fork 31
/
example003_sqrt.cpp
109 lines (85 loc) · 3.5 KB
/
example003_sqrt.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
///////////////////////////////////////////////////////////////////
// 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 <examples/example_uintwide_t.h>
#include <math/wide_integer/uintwide_t.h>
#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 <iomanip>
#include <iostream>
#endif
constexpr auto example_standalone_foodcafe = static_cast<std::uint32_t>(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<std::uint32_t>
(
result_is_ok ? example_standalone_foodcafe : static_cast<std::uint32_t>(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<std::uint32_t>(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