logprob 0.4.0

A wrapper around floats to handle log probabilities
Documentation
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
use num_traits::Float;

use crate::errors::LogProbSubtractionError;

use super::LogProb;
use core::ops::{Add, AddAssign, Mul, Sub, SubAssign};

impl<T: Add> Add for LogProb<T> {
    type Output = LogProb<T::Output>;

    #[inline]
    fn add(self, other: Self) -> Self::Output {
        LogProb((self.0).add(other.0))
    }
}

impl<'a, T> Add<&'a Self> for LogProb<T>
where
    T: Add<&'a T>,
{
    type Output = LogProb<<T as Add<&'a T>>::Output>;

    #[inline]
    fn add(self, other: &'a Self) -> Self::Output {
        LogProb((self.0).add(&other.0))
    }
}

impl<'a, T> Add<LogProb<T>> for &'a LogProb<T>
where
    &'a T: Add<T>,
{
    type Output = LogProb<<&'a T as Add<T>>::Output>;

    #[inline]
    fn add(self, other: LogProb<T>) -> Self::Output {
        LogProb((self.0).add(other.0))
    }
}

impl<'a, 'b, T> Add<&'b LogProb<T>> for &'a LogProb<T>
where
    &'a T: Add<T>,
    T: Copy,
{
    type Output = LogProb<<&'a T as Add<T>>::Output>;

    #[inline]
    fn add(self, other: &'b LogProb<T>) -> Self::Output {
        LogProb((self.0).add(other.0))
    }
}

impl<T: AddAssign> AddAssign for LogProb<T> {
    #[inline]
    fn add_assign(&mut self, other: Self) {
        (self.0).add_assign(other.0);
    }
}

impl<'a, T: AddAssign<&'a T>> AddAssign<&'a Self> for LogProb<T> {
    #[inline]
    fn add_assign(&mut self, other: &'a Self) {
        (self.0).add_assign(&other.0);
    }
}

impl<T: Sub + Float + SubAssign> SubAssign for LogProb<T> {
    #[inline]
    fn sub_assign(&mut self, other: Self) {
        debug_assert!(*self <= other, "Numerator is greater than denominator");
        debug_assert!(other.0.is_finite(), "Division by zero in prob space");
        *self = self.saturating_sub(other);
    }
}

impl<'a, T: Sub + Float + SubAssign<T>> SubAssign<&'a Self> for LogProb<T> {
    #[inline]
    fn sub_assign(&mut self, other: &'a Self) {
        debug_assert!(*self <= *other, "Numerator is greater than denominator");
        debug_assert!(other.0.is_finite(), "Division by zero in prob space");
        *self = self.saturating_sub(*other);
    }
}

impl<T: Sub + Float> Sub for LogProb<T> {
    type Output = LogProb<<T as Sub>::Output>;

    #[inline]
    fn sub(self, rhs: Self) -> Self::Output {
        debug_assert!(self <= rhs, "Numerator is greater than denominator");
        debug_assert!(rhs.0.is_finite(), "Division by zero in prob space");
        self.saturating_sub(rhs)
    }
}
impl<'a, T> Sub<&'a Self> for LogProb<T>
where
    T: Sub<&'a T> + Float,
{
    type Output = LogProb<T>;

    #[inline]
    fn sub(self, rhs: &'a Self) -> Self::Output {
        debug_assert!(self <= *rhs, "Numerator is greater than denominator");
        debug_assert!(rhs.0.is_finite(), "Division by zero in prob space");
        self.saturating_sub(*rhs)
    }
}

impl<'a, T> Sub<LogProb<T>> for &'a LogProb<T>
where
    &'a T: Sub<T>,
    T: Float,
{
    type Output = LogProb<T>;

    #[inline]
    fn sub(self, rhs: LogProb<T>) -> Self::Output {
        debug_assert!(*self <= rhs, "Numerator is greater than denominator");
        debug_assert!(rhs.0.is_finite(), "Division by zero in prob space");
        self.saturating_sub(rhs)
    }
}

impl<'a, 'b, T> Sub<&'b LogProb<T>> for &'a LogProb<T>
where
    &'a T: Sub<T>,
    T: Copy + Float,
{
    type Output = LogProb<T>;

    #[inline]
    fn sub(self, rhs: &'b LogProb<T>) -> Self::Output {
        debug_assert!(self <= rhs, "Numerator is greater than denominator");
        debug_assert!(rhs.0.is_finite(), "Division by zero in prob space");
        self.saturating_sub(*rhs)
    }
}

impl<T: Float> LogProb<T> {
    ///Subtracts two [`LogProb`]s (equivalent to division in prob-space) and returns [`LogProbSubtractionError`] if the
    ///resulting value isn't a valid [`LogProb`].
    ///```
    ///# use logprob::{LogProb, LogProbSubtractionError};
    ///# fn main() -> anyhow::Result<()> {
    ///let x = LogProb::new(-3.0)?.try_sub(LogProb::new(-2.0)?);
    ///assert_eq!(x, Ok(LogProb::new(-1.0)?));
    ///let x = LogProb::new(-2.0)?.try_sub(LogProb::new(-3.0)?);
    ///assert_eq!(x, Err(LogProbSubtractionError::NumeratorBiggerThanDenominator));
    ///let x = LogProb::new(-2.0)?.try_sub(LogProb::prob_of_zero());
    ///assert_eq!(x, Err(LogProbSubtractionError::NumeratorBiggerThanDenominator));
    ///let x = LogProb::<f32>::prob_of_zero().try_sub(LogProb::prob_of_zero());
    //assert_eq!(x, Err(LogProbSubtractionError::DivideByZero));
    ///# Ok(())
    ///# }
    ///```
    ///# Errors
    /// - [`LogProbSubtractionError::NumeratorBiggerThanDenominator`] if `self > rhs`
    /// - [`LogProbSubtractionError::DivideByZero`] if `rhs` is negative infinity
    #[inline]
    pub fn try_sub(&self, rhs: LogProb<T>) -> Result<LogProb<T>, LogProbSubtractionError> {
        if *self > rhs {
            Err(LogProbSubtractionError::NumeratorBiggerThanDenominator)
        } else if !rhs.0.is_finite() {
            Err(LogProbSubtractionError::DivideByZero)
        } else {
            Ok(LogProb(self.0.sub(rhs.0)))
        }
    }

    ///Subtracts two [`LogProb`]s (equivalent to division in prob-space) and returns [`None`] if the
    ///resulting value isn't a valid [`LogProb`].
    ///
    ///```
    ///# use logprob::LogProb;
    ///# fn main() -> anyhow::Result<()> {
    ///let x = LogProb::new(-3.0)?.checked_sub(LogProb::new(-2.0)?);
    ///assert_eq!(x, Some(LogProb::new(-1.0)?));
    ///let x = LogProb::new(-2.0)?.checked_sub(LogProb::new(-3.0)?);
    ///assert_eq!(x, None);
    ///let x = LogProb::new(-2.0)?.checked_sub(LogProb::prob_of_zero());
    ///assert_eq!(x, None);
    ///# Ok(())
    ///# }
    ///```
    #[inline]
    pub fn checked_sub(&self, rhs: LogProb<T>) -> Option<LogProb<T>> {
        if *self > rhs || !rhs.0.is_finite() {
            None
        } else {
            Some(LogProb(self.0.sub(rhs.0)))
        }
    }

    ///Subtracts two [`LogProb`]s (equivalent to division in prob-space) and returns a [`LogProb`] of
    ///0.0 if the numerator is greater than the denominator and a value of negative infinity is the
    ///denominator is negative infinity.
    ///
    ///```
    ///# use logprob::LogProb;
    ///# fn main() -> anyhow::Result<()> {
    ///let x = LogProb::new(-3.0)?.saturating_sub(LogProb::new(-2.0)?);
    ///assert_eq!(x, LogProb::new(-1.0)?);
    ///let x = LogProb::new(-2.0)?.saturating_sub(LogProb::new(-3.0)?);
    ///assert_eq!(x, LogProb::new(0.0)?);
    ///let x = LogProb::new(-2.0)?.saturating_sub(LogProb::prob_of_zero());
    ///assert_eq!(x, LogProb::new(0.0)?);
    ///let x = LogProb::prob_of_zero().saturating_sub(LogProb::prob_of_zero());
    ///assert_eq!(x, LogProb::new(0.0)?);
    ///# Ok(())
    ///# }
    ///```
    #[must_use]
    #[inline]
    pub fn saturating_sub(&self, rhs: LogProb<T>) -> LogProb<T> {
        //This saturates because `f64:NAN.min(0.0)=0.0` and `f32:NAN.min(0.0)=0.0`
        LogProb((self.0 - rhs.0).min(T::zero()))
    }

    ///Subtracts two [`LogProb`]s (equivalent to division in prob-space).
    ///
    ///Does not check if the [`LogProb`] result is valid so can be used in performance critical context
    ///carefully
    ///
    ///# Safety
    ///This subtraction method *does not* check for correctness, so it can lead to invalid [`LogProb`]s
    ///It should only be used when you are certain `rhs` < `self`  and when you are certain `rhs` is
    ///not negative infinity.
    ///```
    ///# use logprob::LogProb;
    ///# fn main() -> anyhow::Result<()> {
    ///unsafe{
    ///    let x = LogProb::new(-3.0)?.unchecked_sub(LogProb::new(-2.0)?);
    ///    assert_eq!(x, LogProb::new(-1.0)?);
    ///    let x = LogProb::new(-2.0)?.unchecked_sub(LogProb::new(-3.0)?);
    ///    assert_eq!(x.into_inner(), 1.0); //This is a corrupted LogProb!
    ///    let x = LogProb::new(-2.0)?.unchecked_sub(LogProb::prob_of_zero());
    ///    assert_eq!(x.into_inner(), f64::INFINITY); //This is a corrupted LogProb!
    ///    let x: LogProb<f64> = LogProb::prob_of_zero().unchecked_sub(LogProb::prob_of_zero());
    ///    assert!(x.into_inner().is_nan()); //This is a corrupted LogProb!
    ///}
    ///# Ok(())
    ///# }
    ///```
    #[must_use]
    #[inline]
    pub unsafe fn unchecked_sub(&self, rhs: LogProb<T>) -> LogProb<T> {
        LogProb(self.0 - rhs.0)
    }
}

macro_rules! impl_mul {
    ($unsigned: ty, $float: ty) => {
        impl Mul<LogProb<$float>> for $unsigned {
            type Output = LogProb<$float>;

            fn mul(self, rhs: LogProb<$float>) -> Self::Output {
                let s: $float = self.into();
                LogProb(s * rhs.0)
            }
        }

        impl Mul<$unsigned> for LogProb<$float> {
            type Output = LogProb<$float>;

            fn mul(self, rhs: $unsigned) -> Self::Output {
                let s: $float = rhs.into();
                LogProb(s * self.0)
            }
        }

        impl<'a> Mul<&'a $unsigned> for LogProb<$float> {
            type Output = LogProb<$float>;

            fn mul(self, rhs: &'a $unsigned) -> Self::Output {
                let s: $float = (*rhs).into();
                LogProb(s * self.0)
            }
        }

        impl<'a> Mul<&'a LogProb<$float>> for $unsigned {
            type Output = LogProb<$float>;

            fn mul(self, rhs: &'a LogProb<$float>) -> Self::Output {
                let s: $float = self.into();
                LogProb(s * rhs.0)
            }
        }

        impl Mul<LogProb<$float>> for &$unsigned {
            type Output = LogProb<$float>;

            fn mul(self, rhs: LogProb<$float>) -> Self::Output {
                let s: $float = (*self).into();
                LogProb(s * rhs.0)
            }
        }
        impl Mul<$unsigned> for &LogProb<$float> {
            type Output = LogProb<$float>;

            fn mul(self, rhs: $unsigned) -> Self::Output {
                let s: $float = rhs.into();
                LogProb(s * self.0)
            }
        }
        impl Mul<&LogProb<$float>> for &$unsigned {
            type Output = LogProb<$float>;

            fn mul(self, rhs: &LogProb<$float>) -> Self::Output {
                let s: $float = (*self).into();
                LogProb(s * rhs.0)
            }
        }

        impl Mul<&$unsigned> for &LogProb<$float> {
            type Output = LogProb<$float>;

            fn mul(self, rhs: &$unsigned) -> Self::Output {
                let s: $float = (*rhs).into();
                LogProb(s * self.0)
            }
        }
    };
}

impl_mul!(u8, f32);
impl_mul!(u8, f64);
impl_mul!(u16, f32);
impl_mul!(u16, f64);
impl_mul!(u32, f64);

macro_rules! impl_mul_lossy {
    ($unsigned: ty, $float: ty) => {
        #[expect(clippy::cast_precision_loss)]
        impl Mul<LogProb<$float>> for $unsigned {
            type Output = LogProb<$float>;

            fn mul(self, rhs: LogProb<$float>) -> Self::Output {
                let s: $float = self as $float;
                LogProb(s * rhs.0)
            }
        }

        #[expect(clippy::cast_precision_loss)]
        impl Mul<$unsigned> for LogProb<$float> {
            type Output = LogProb<$float>;

            fn mul(self, rhs: $unsigned) -> Self::Output {
                let s: $float = rhs as $float;
                LogProb(s * self.0)
            }
        }

        #[expect(clippy::cast_precision_loss)]
        impl Mul<&$unsigned> for LogProb<$float> {
            type Output = LogProb<$float>;

            fn mul(self, rhs: &$unsigned) -> Self::Output {
                let s: $float = (*rhs) as $float;
                LogProb(s * self.0)
            }
        }

        #[expect(clippy::cast_precision_loss)]
        impl Mul<&LogProb<$float>> for $unsigned {
            type Output = LogProb<$float>;

            fn mul(self, rhs: &LogProb<$float>) -> Self::Output {
                let s: $float = self as $float;
                LogProb(s * rhs.0)
            }
        }

        #[expect(clippy::cast_precision_loss)]
        impl Mul<LogProb<$float>> for &$unsigned {
            type Output = LogProb<$float>;

            fn mul(self, rhs: LogProb<$float>) -> Self::Output {
                let s: $float = (*self) as $float;
                LogProb(s * rhs.0)
            }
        }

        #[expect(clippy::cast_precision_loss)]
        impl Mul<$unsigned> for &LogProb<$float> {
            type Output = LogProb<$float>;

            fn mul(self, rhs: $unsigned) -> Self::Output {
                let s: $float = rhs as $float;
                LogProb(s * self.0)
            }
        }

        #[expect(clippy::cast_precision_loss)]
        impl Mul<&LogProb<$float>> for &$unsigned {
            type Output = LogProb<$float>;

            fn mul(self, rhs: &LogProb<$float>) -> Self::Output {
                let s: $float = (*self) as $float;
                LogProb(s * rhs.0)
            }
        }

        #[expect(clippy::cast_precision_loss)]
        impl Mul<&$unsigned> for &LogProb<$float> {
            type Output = LogProb<$float>;

            fn mul(self, rhs: &$unsigned) -> Self::Output {
                let s: $float = (*rhs) as $float;
                LogProb(s * self.0)
            }
        }
    };
}

impl_mul_lossy!(usize, f64);
impl_mul_lossy!(usize, f32);
impl_mul_lossy!(u64, f64);
impl_mul_lossy!(u64, f32);
impl_mul_lossy!(u32, f32);
impl_mul_lossy!(u128, f32);
impl_mul_lossy!(u128, f64);