TeDDy 4.1.0
Decision diagram library.
Loading...
Searching...
No Matches
operators.hpp
1#ifndef LIBTEDDY_DETAILS_OPERATORS_HPP
2#define LIBTEDDY_DETAILS_OPERATORS_HPP
3
4#include <libteddy/details/tools.hpp>
5#include <libteddy/details/types.hpp>
6
7namespace teddy
8{
9namespace details
10{
11template<class Op>
13{
14 template<class... Ts>
15 [[nodiscard]] auto constexpr operator() (int32 const t, Ts... ts) const
16 -> int32
17 {
18 Op const& op = static_cast<Op const&>(*this);
19 return op(t, op(ts...));
20 }
21};
22
23template<int32 Id, bool IsCommutative>
25{
26 [[nodiscard]] static auto constexpr get_id() -> int32
27 {
28 return Id;
29 }
30
31 [[nodiscard]] static auto constexpr is_commutative() -> bool
32 {
33 return IsCommutative;
34 }
35};
36
37} // namespace details
38
43namespace ops
44{
46{
47 [[nodiscard]] auto constexpr operator() (int32 const l, int32 const r) const
48 -> int32
49 {
50 int32 const mi = utils::min(l, r);
51 int32 const ma = utils::max(l, r);
52 return mi == 0 ? mi : ma;
53 }
54
55 using details::make_nary<AND>::operator();
56};
57
59{
60 [[nodiscard]] auto constexpr operator() (int32 const l, int32 const r) const
61 -> int32
62 {
63 int const mi = utils::min(l, r);
64 int const ma = utils::max(l, r);
65 return mi == 0 ? ma : mi;
66 }
67
68 using details::make_nary<OR>::operator();
69};
70
72{
73 [[nodiscard]] auto constexpr operator() (int32 const l, int32 const r) const
74 -> int32
75 {
76 int const xi = l ^ r;
77 int const ma = utils::max(l, r);
78 return ma == Nondetermined ? ma : xi;
79 }
80
81 using details::make_nary<XOR>::operator();
82};
83
85{
86 [[nodiscard]] auto constexpr operator() (int32 const l, int32 const r) const
87 -> int32
88 {
89 int32 const mi = utils::min(l, r);
90 int32 const ma = utils::max(l, r);
91 return mi == 0 ? mi : ma == Undefined ? mi : ma;
92 }
93
94 using details::make_nary<PI_CONJ>::operator();
95};
96
98{
99 [[nodiscard]] auto constexpr operator() (int32 const l, int32 const r) const
100 -> int32
101 {
102 int32 const mi = utils::min(l, r);
103 int32 const ma = utils::max(l, r);
104 return ma == Nondetermined ? ma : 1 - mi;
105 }
106
107 using details::make_nary<NAND>::operator();
108};
109
111{
112 [[nodiscard]] auto constexpr operator() (int32 const l, int32 const r) const
113 -> int32
114 {
115 // This assumes that l,r is from {0,1,N} where N has 0 at lowest bit.
116
117 int32 const mi = utils::min(l, r);
118 int32 const ma = utils::max(l, r);
119 int32 const ema = utils::max(l | r, 1);
120 return (mi & 1) | (ma & 1) ? 0 : ema;
121 }
122
123 using details::make_nary<NOR>::operator();
124};
125
127{
128 [[nodiscard]] auto constexpr operator() (int32 const l, int32 const r) const
129 -> int32
130 {
131 int32 const ma = utils::max(l, r);
132 int32 const ne = static_cast<int32>(l == r);
133 return ma == Nondetermined ? ma : ne;
134 }
135
136 using details::make_nary<XNOR>::operator();
137};
138
140{
141 [[nodiscard]] auto constexpr operator() (int32 const l, int32 const r) const
142 -> int32
143 {
144 int32 const ma = utils::max(l, r);
145 int32 const eq = static_cast<int32>(l == r);
146 return ma == Nondetermined ? ma : eq;
147 }
148
149 using details::make_nary<EQUAL_TO>::operator();
150};
151
153 details::make_nary<NOT_EQUAL_TO>,
155{
156 [[nodiscard]] auto constexpr operator() (int32 const l, int32 const r) const
157 -> int32
158 {
159 int32 const ma = utils::max(l, r);
160 int32 const ne = static_cast<int32>(l != r);
161 return ma == Nondetermined ? ma : ne;
162 }
163
164 using details::make_nary<NOT_EQUAL_TO>::operator();
165};
166
167struct LESS : details::operation_info<10, false>
168{
169 [[nodiscard]] auto constexpr operator() (int32 const l, int32 const r) const
170 -> int32
171 {
172 int32 const ma = utils::max(l, r);
173 int32 const le = static_cast<int32>(l < r);
174 return ma == Nondetermined ? ma : le;
175 }
176};
177
179{
180 [[nodiscard]] auto constexpr operator() (int32 const l, int32 const r) const
181 -> int32
182 {
183 int32 const ma = utils::max(l, r);
184 int32 const le = static_cast<int32>(l <= r);
185 return ma == Nondetermined ? ma : le;
186 }
187};
188
190{
191 [[nodiscard]] auto constexpr operator() (int32 const l, int32 const r) const
192 -> int32
193 {
194 int32 const ma = utils::max(l, r);
195 int32 const ge = static_cast<int32>(l > r);
196 return ma == Nondetermined ? ma : ge;
197 }
198};
199
201{
202 [[nodiscard]] auto constexpr operator() (int32 const l, int32 const r) const
203 -> int32
204 {
205 int32 const ma = utils::max(l, r);
206 int32 const ge = static_cast<int32>(l >= r);
207 // return l == 0 ? 1 : ma == Nondetermined ? Nondetermined : ge;
208 return ma == Nondetermined ? Nondetermined : ge;
209 }
210};
211
213{
214 [[nodiscard]] auto constexpr operator() (int32 const l, int32 const r) const
215 -> int32
216 {
217 int32 const mi = utils::min(l, r);
218 int32 const ma = utils::max(l, r);
219 return mi == 0 || ma != Nondetermined ? mi : ma;
220 }
221
222 using details::make_nary<MIN>::operator();
223};
224
226{
227 [[nodiscard]] auto constexpr operator() (int32 const l, int32 const r) const
228 -> int32
229 {
230 return utils::max(l, r);
231 }
232
233 using details::make_nary<MAX>::operator();
234};
235
240template<int32 M>
242{
243 [[nodiscard]] auto constexpr operator() (int32 const l, int32 const r) const
244 -> int32
245 {
246 int32 const ma = utils::max(l, r);
247 return l == M - 1 || r == M - 1 ? M - 1 : ma;
248 }
249
250 using details::make_nary<MAXB>::operator();
251};
252
253template<int32 M>
255{
256 [[nodiscard]] auto constexpr operator() (int32 const l, int32 const r) const
257 -> int32
258 {
259 int32 const ma = utils::max(l, r);
260 int32 const pl = (l + r) % M;
261 return ma == Nondetermined ? ma : pl;
262 }
263};
264
265template<int32 M>
267 details::make_nary<MULTIPLIES<M>>,
269{
270 [[nodiscard]] auto constexpr operator() (int32 const l, int32 const r) const
271 -> int32
272 {
273 int32 const mi = utils::min(l, r);
274 int32 const ma = utils::max(l, r);
275 int32 const ml = (l * r) % M;
276 return mi == 0 ? 0 : ma == Nondetermined ? Nondetermined : ml;
277 }
278};
279
281{
282 [[nodiscard]] auto constexpr operator() (int32 const l, int32 const r) const
283 -> int32
284 {
285 int32 const ma = utils::max(l, r);
286 int32 const im = static_cast<int32>(not l || r);
287 return l == 0 ? 1 : ma == Nondetermined ? Nondetermined : im;
288 }
289};
290} // namespace ops
291
292template<class Operation>
293concept teddy_bin_op = requires() {
294 {
295 Operation::get_id()
297 {
298 Operation::is_commutative()
300 };
301} // namespace teddy
302
303#endif
Definition operators.hpp:293
Definition tools.hpp:306
Contains definitions of all binary operations for apply function.
Definition operators.hpp:13
Definition operators.hpp:25
Definition operators.hpp:46
Definition operators.hpp:140
Definition operators.hpp:201
Definition operators.hpp:190
Definition operators.hpp:281
Definition operators.hpp:179
Definition operators.hpp:168
Same as MAX but short-circuits for M – should be faster.
Definition operators.hpp:242
Definition operators.hpp:226
Definition operators.hpp:213
Definition operators.hpp:269
Definition operators.hpp:98
Definition operators.hpp:111
Definition operators.hpp:155
Definition operators.hpp:59
Definition operators.hpp:85
Definition operators.hpp:255
Definition operators.hpp:127
Definition operators.hpp:72