ebi 0.3.14

A stochastic process mining utility and library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(any(
    all(
        not(feature = "eexactarithmetic"),
        not(feature = "eapproximatearithmetic")
    ),
    all(feature = "eexactarithmetic", feature = "eapproximatearithmetic")
))]
pub type LogDiv = super::log_div_enum::LogDivEnum;

#[cfg(all(not(feature = "eexactarithmetic"), feature = "eapproximatearithmetic"))]
pub type LogDiv = super::log_div_f64::LogDivF64;

#[cfg(all(feature = "eexactarithmetic", not(feature = "eapproximatearithmetic")))]
pub type LogDiv = super::log_div_exact::LogDivExact;