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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
#![allow(clippy::result_unit_err)]
use core::convert::From;
use core::ops::{AddAssign, BitOrAssign, ShlAssign, Shr, ShrAssign};
use fixed::traits::{FixedUnsigned, ToFixed};
use num_traits::{One, SaturatingMul, Zero};
fn rs<T>(operand: T) -> T
where
T: FixedUnsigned + One,
{
let lsb = T::one() >> T::FRAC_NBITS;
(operand >> 1_u32) + (operand & lsb)
}
fn log2_inner<S, D>(operand: S) -> D
where
S: FixedUnsigned + PartialOrd<D> + One,
D: FixedUnsigned + One,
D::Bits: Copy + ToFixed + AddAssign + BitOrAssign + ShlAssign,
{
let two = D::from_num(2);
let mut x = operand;
let mut result = D::from_num(0).to_bits();
let lsb = (D::one() >> D::FRAC_NBITS).to_bits();
while x >= two {
result += lsb;
x = rs(x);
}
if x == D::one() {
return D::from_num(result);
}
for _i in (0..D::FRAC_NBITS).rev() {
x *= x;
result <<= lsb;
if x >= two {
result |= lsb;
x = rs(x);
}
}
D::from_bits(result)
}
pub fn log2<S, D>(operand: S) -> Result<(D, bool), ()>
where
S: FixedUnsigned,
D: FixedUnsigned + From<S> + One,
D::Bits: Copy + ToFixed + AddAssign + BitOrAssign + ShlAssign,
{
if operand <= S::from_num(0) {
return Err(());
}
let operand = D::from(operand);
if operand < D::one() {
let inverse = D::one().checked_div(operand).unwrap(); return Ok((log2_inner::<D, D>(inverse), true));
}
Ok((log2_inner::<D, D>(operand), false))
}
pub fn ln<S, D>(operand: S) -> Result<(D, bool), ()>
where
S: FixedUnsigned,
D: FixedUnsigned + From<S> + One,
D::Bits: Copy + ToFixed + AddAssign + BitOrAssign + ShlAssign,
S::Bits: Copy + ToFixed + AddAssign + BitOrAssign + ShrAssign + Shr,
{
let log2_e = S::from_num(fixed::consts::LOG2_E);
let log_result = log2::<S, D>(operand)?;
Ok((log_result.0 / D::from(log2_e), log_result.1))
}
pub fn exp<S, D>(operand: S, neg: bool) -> Result<D, ()>
where
S: FixedUnsigned + PartialOrd<D> + One,
D: FixedUnsigned + PartialOrd<S> + From<S> + One,
{
if operand.is_zero() {
return Ok(D::one());
}
if operand == S::one() {
let e = S::from_str("2.718281828459045235360287471352662497757").map_err(|_| ())?;
return Ok(D::from(e));
}
let operand = D::from(operand);
let mut result = operand + D::one();
let mut term = operand;
let max_iter = D::FRAC_NBITS.checked_mul(3).ok_or(())?;
result = (2..max_iter).try_fold(result, |acc, i| -> Result<D, ()> {
term = term.checked_mul(operand).ok_or(())?;
term = term.checked_div(D::from_num(i)).ok_or(())?;
acc.checked_add(term).ok_or(())
})?;
if neg {
result = D::one().checked_div(result).ok_or(())?;
}
Ok(result)
}
pub fn pow<S, D>(operand: S, exponent: S) -> Result<D, ()>
where
S: FixedUnsigned + One + PartialOrd<D> + Zero,
D: FixedUnsigned + From<S> + One + Zero,
D::Bits: Copy + ToFixed + AddAssign + BitOrAssign + ShlAssign,
S::Bits: Copy + ToFixed + AddAssign + BitOrAssign + ShlAssign + Shr + ShrAssign,
{
if operand.is_zero() {
return Ok(D::zero());
} else if exponent == S::zero() {
return Ok(D::one());
} else if exponent == S::one() {
return Ok(D::from(operand));
}
let (r, neg) = ln::<S, D>(operand)?;
let r: D = r.checked_mul(exponent.into()).ok_or(())?;
let r: D = exp(r, neg)?;
let (result, oflw) = r.overflowing_to_num::<D>();
if oflw {
return Err(());
};
Ok(result)
}
pub fn powi<S, D>(operand: S, exponent: u32) -> Result<D, ()>
where
S: FixedUnsigned + Zero,
D: FixedUnsigned + From<S> + One + Zero,
{
if operand == S::zero() {
return Ok(D::zero());
} else if exponent == 0 {
return Ok(D::one());
} else if exponent == 1 {
return Ok(D::from(operand));
}
let operand = D::from(operand);
let r = (1..exponent).try_fold(operand, |acc, _| acc.checked_mul(operand));
r.ok_or(())
}
pub fn saturating_powi_high_precision<S, D>(operand: S, n: u32) -> D
where
S: FixedUnsigned + One + Zero,
D: FixedUnsigned + From<S> + One + Zero,
S::Bits: From<u32>,
D::Bits: From<u32>,
{
if operand == S::zero() {
return D::zero();
} else if n == 0 {
return D::one();
} else if n == 1 {
return D::from(operand);
}
let boundary = S::one()
.checked_div_int(10_u32.into())
.expect("1 / 10 does not fail; qed");
match (boundary.checked_div_int(n.into()), S::one().checked_sub(operand)) {
(Some(b), Some(one_minus_operand)) if b > one_minus_operand => {
powi_near_one(operand.into(), n).unwrap_or_else(|| saturating_pow(operand.into(), n))
}
_ => saturating_pow(operand.into(), n),
}
}
fn saturating_pow<S>(operand: S, exp: u32) -> S
where
S: FixedUnsigned + One + SaturatingMul,
S::Bits: From<u32>,
{
if exp == 0 {
return S::one();
}
let msb_pos = 32 - exp.leading_zeros();
let mut result = S::one();
let mut pow_val = operand;
for i in 0..msb_pos {
if ((1 << i) & exp) > 0 {
result = result.saturating_mul(pow_val);
}
pow_val = pow_val.saturating_mul(pow_val);
}
result
}
fn powi_near_one<S>(operand: S, n: u32) -> Option<S>
where
S: FixedUnsigned + One + Zero,
S::Bits: From<u32>,
{
if n == 0 {
return Some(S::one());
} else if n == 1 {
return Some(operand);
}
let one_minus_operand = S::one().checked_sub(operand)?;
debug_assert!(S::one().checked_div_int(n.into())? > one_minus_operand);
if S::one().checked_div_int(n.into())? <= one_minus_operand {
return None;
}
let mut s_pos = S::one();
let mut s_minus = S::zero();
let mut t = S::one();
let iterations = 32_u32;
for i in 1..iterations {
let b = one_minus_operand.checked_mul_int(S::Bits::from(n - i + 1))?;
let t_factor = b.checked_div_int(i.into())?;
t = t.checked_mul(t_factor)?;
if i % 2 == 0 || operand > S::one() {
s_pos = s_pos.checked_add(t)?;
} else {
s_minus = s_minus.checked_add(t)?;
}
if i >= n || t == S::zero() {
return s_pos.checked_sub(s_minus);
}
}
None }
#[cfg(test)]
mod tests {
use crate::fraction;
use crate::types::{FixedBalance, Fraction};
use core::str::FromStr;
use fixed::traits::LossyInto;
use fixed::types::U64F64;
use super::*;
#[test]
fn exp_works() {
type S = U64F64;
type D = U64F64;
let e = S::from_str("2.718281828459045235360287471352662497757").unwrap();
let zero = S::from_num(0);
let one = S::one();
let two = S::from_num(2);
assert_eq!(exp::<S, D>(zero, false), Ok(D::from_num(one)));
assert_eq!(exp::<S, D>(one, false), Ok(D::from_num(e)));
assert_eq!(
exp::<S, D>(two, false),
Ok(D::from_str("7.3890560989306502265").unwrap())
);
assert_eq!(
exp::<S, D>(two, true),
Ok(D::from_str("0.13533528323661269186").unwrap())
);
}
#[test]
fn log2_works() {
type S = U64F64;
type D = U64F64;
let zero = S::from_num(0);
let one = S::one();
let two = S::from_num(2);
let four = S::from_num(4);
assert_eq!(log2::<S, D>(zero), Err(()));
assert_eq!(log2(two), Ok((D::from_num(one), false)));
assert_eq!(log2(one / four), Ok((D::from_num(two), true)));
assert_eq!(log2(S::from_num(0.5)), Ok((D::from_num(one), true)));
assert_eq!(log2(S::from_num(1.0 / 0.5)), Ok((D::from_num(one), false)));
}
#[test]
fn powi_works() {
type S = U64F64;
type D = U64F64;
let zero = S::from_num(0);
let one = S::one();
let two = S::from_num(2);
let four = S::from_num(4);
assert_eq!(powi(two, 0), Ok(D::from_num(one)));
assert_eq!(powi(zero, 2), Ok(D::from_num(zero)));
assert_eq!(powi(two, 1), Ok(D::from_num(2)));
assert_eq!(powi(two, 2), Ok(D::from_num(4)));
assert_eq!(powi(two, 3), Ok(D::from_num(8)));
assert_eq!(powi(one / four, 2), Ok(D::from_num(0.0625)));
}
#[test]
fn saturating_powi_high_precision_works() {
type S = U64F64;
type D = U64F64;
let zero = S::from_num(0);
let one = S::one();
let two = S::from_num(2);
let four = S::from_num(4);
assert_eq!(saturating_powi_high_precision::<S, D>(two, 0), D::from_num(one));
assert_eq!(saturating_powi_high_precision::<S, D>(zero, 2), D::from_num(zero));
assert_eq!(saturating_powi_high_precision::<S, D>(two, 1), D::from_num(2));
assert_eq!(saturating_powi_high_precision::<S, D>(two, 2), D::from_num(4));
assert_eq!(saturating_powi_high_precision::<S, D>(two, 3), D::from_num(8));
assert_eq!(
saturating_powi_high_precision::<S, D>(one / four, 2),
D::from_num(0.0625)
);
assert_eq!(
saturating_powi_high_precision::<S, D>(S::from_num(9) / 10, 2),
D::from_num(81) / 100
);
let expected: D = powi(D::from_num(9) / 10, 2).unwrap();
assert_eq!(saturating_powi_high_precision::<S, D>(S::from_num(9) / 10, 2), expected);
let expected: D = powi(D::from_num(8) / 10, 2).unwrap();
assert_eq!(saturating_powi_high_precision::<S, D>(S::from_num(8) / 10, 2), expected);
}
#[test]
fn saturating_powi_high_precision_works_for_fraction() {
assert_eq!(
saturating_powi_high_precision::<Fraction, Fraction>(Fraction::one() / 4, 2),
Fraction::from_num(0.0625)
);
assert_eq!(
saturating_powi_high_precision::<Fraction, Fraction>(fraction::frac(6, 10), 2),
fraction::frac(36, 100)
);
let expected: Fraction = powi(fraction::frac(8, 10), 2).unwrap();
assert_eq!(
saturating_powi_high_precision::<Fraction, Fraction>(fraction::frac(8, 10), 2),
expected
);
}
#[test]
fn powi_near_one_works() {
type S = U64F64;
assert_eq!(powi_near_one(S::from_num(9) / 10, 2), Some(S::from_num(81) / 100));
}
#[test]
fn pow_works() {
type S = FixedBalance;
type D = FixedBalance;
let zero = S::from_num(0);
let one = S::one();
let two = S::from_num(2);
let three = S::from_num(3);
let four = S::from_num(4);
assert_eq!(pow::<S, D>(two, zero), Ok(one));
assert_eq!(pow::<S, D>(zero, two), Ok(zero));
let result: f64 = pow::<S, D>(two, three).unwrap().lossy_into();
assert_relative_eq!(result, 8.0, epsilon = 1.0e-6);
let result: f64 = pow::<S, D>(one / four, two).unwrap().lossy_into();
assert_relative_eq!(result, 0.0625, epsilon = 1.0e-6);
assert_eq!(pow::<S, D>(two, one), Ok(two));
let result: f64 = pow::<S, D>(one / four, one / two).unwrap().lossy_into();
assert_relative_eq!(result, 0.5, epsilon = 1.0e-6);
assert_eq!(
pow(S::from_num(22.1234), S::from_num(2.1)),
Ok(D::from_num(667.096912176457))
);
assert_eq!(
pow(S::from_num(0.986069911074), S::from_num(1.541748732743)),
Ok(D::from_num(0.978604514488))
);
}
}