CNL  2.0.2 (development)
Compositional Numeric Library
sqrt.h
1 
2 // Copyright John McFarlane 2021.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file ../LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 
7 #if !defined(CNL_IMPL_CMATH_SQRT_H)
8 #define CNL_IMPL_CMATH_SQRT_H
9 
10 #include "../../integer.h"
11 #include "../cnl_assert.h"
12 #include "../num_traits/digits.h"
13 
15 namespace cnl {
23 
24  template<integer Integer>
25  [[nodiscard]] constexpr auto sqrt(Integer const& x)
26  {
27  CNL_ASSERT(x >= Integer{0});
28 
29  auto root = +Integer{0};
30  auto bit = Integer{1} << ((digits_v<Integer> - 1) & ~1);
31  auto num = decltype(root + bit){x};
32 
33  while (bit > num) {
34  bit >>= 2;
35  }
36 
37  while (bit) {
38  if (num >= root + bit) {
39  num -= root + bit;
40  root = (root >> 1) + bit;
41  } else {
42  root >>= 1;
43  }
44  bit >>= 2;
45  }
46  return root;
47  }
48 }
49 
50 #endif // CNL_IMPL_CMATH_SQRT_H
cnl::sqrt
constexpr auto sqrt(Integer const &x)
integer overload of cnl::sqrt
Definition: sqrt.h:25
cnl
compositional numeric library
Definition: abort.h:15