CNL  2.0.2 (development)
Compositional Numeric Library
definition.h
1 
2 // Copyright John McFarlane 2019.
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_SCALED_DEFINITION_H)
8 #define CNL_IMPL_SCALED_DEFINITION_H
9 
10 #include "declaration.h"
11 
12 #include <algorithm>
13 
15 namespace cnl {
23 
24  template<int Exponent, int Radix>
25  struct power {
26  static_assert(Radix >= 2, "Radix must be two or greater");
27 
29  // constants
30 
32  constexpr static int exponent = Exponent;
33 
35  constexpr static int radix = Radix;
36 
38  // types
39 
40  using identity = power<0, Radix>;
41  };
42 
44 
45  template<int LhsExponent, int RhsExponent, int Radix>
46  [[nodiscard]] constexpr auto operator+(power<LhsExponent, Radix>, power<RhsExponent, Radix>)
47  -> power<std::min(LhsExponent, RhsExponent), Radix>
48  {
49  return power<std::min(LhsExponent, RhsExponent), Radix>{};
50  }
51 
52  template<int LhsExponent, int RhsExponent, int Radix>
53  [[nodiscard]] constexpr auto operator-(power<LhsExponent, Radix>, power<RhsExponent, Radix>)
54  -> power<std::min(LhsExponent, RhsExponent), Radix>
55  {
56  return power<std::min(LhsExponent, RhsExponent), Radix>{};
57  }
58 
59  template<int LhsExponent, int RhsExponent, int Radix>
60  [[nodiscard]] constexpr auto operator*(power<LhsExponent, Radix>, power<RhsExponent, Radix>)
61  -> power<LhsExponent + RhsExponent, Radix>
62  {
63  return power<LhsExponent + RhsExponent, Radix>{};
64  }
65 
66  template<int LhsExponent, int RhsExponent, int Radix>
67  [[nodiscard]] constexpr auto operator/(power<LhsExponent, Radix>, power<RhsExponent, Radix>)
68  -> power<LhsExponent - RhsExponent, Radix>
69  {
70  return power<LhsExponent - RhsExponent, Radix>{};
71  }
72 
73  template<int LhsExponent, int RhsExponent, int Radix>
74  [[nodiscard]] constexpr auto operator%(power<LhsExponent, Radix>, power<RhsExponent, Radix>)
75  -> power<LhsExponent, Radix>
76  {
77  return power<LhsExponent, Radix>{};
78  }
79 
80  template<int LhsExponent, int RhsExponent, int Radix>
81  [[nodiscard]] constexpr auto operator&(power<LhsExponent, Radix>, power<RhsExponent, Radix>)
82  -> power<std::min(LhsExponent, RhsExponent), Radix>
83  {
84  return power<std::min(LhsExponent, RhsExponent), Radix>{};
85  }
86 
87  template<int LhsExponent, int RhsExponent, int Radix>
88  [[nodiscard]] constexpr auto operator|(power<LhsExponent, Radix>, power<RhsExponent, Radix>)
89  -> power<std::min(LhsExponent, RhsExponent), Radix>
90  {
91  return power<std::min(LhsExponent, RhsExponent), Radix>{};
92  }
93 
94  template<int LhsExponent, int RhsExponent, int Radix>
95  [[nodiscard]] constexpr auto operator^(power<LhsExponent, Radix>, power<RhsExponent, Radix>)
96  -> power<std::min(LhsExponent, RhsExponent), Radix>
97  {
98  return power<std::min(LhsExponent, RhsExponent), Radix>{};
99  }
100 }
101 
102 #endif // CNL_IMPL_SCALED_DEFINITION_H
cnl::power::radix
constexpr static int radix
value of template parameter, Radix
Definition: definition.h:35
cnl::power::exponent
constexpr static int exponent
value of template parameter, Exponent
Definition: definition.h:32
cnl
compositional numeric library
Definition: abort.h:15
std::min
T min(T... args)
cnl::power
tag representing the scaling of an integer by a fixed factor
Definition: declaration.h:13