solmath 0.2.0

Deterministic fixed-point math and quantitative finance for Solana: Greeks, IV, American KBI, NIG, TWAP, and DeFi primitives.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// CU logging stub. Internal.
#[allow(dead_code)]
#[inline(always)]
pub(crate) fn log_cu() {
    // Intentionally a no-op in this crate.
}

/// Fixed-point value logger. Internal.
#[allow(dead_code)]
#[inline]
pub(crate) fn msg_fp(_label: &str, _x: i128) {
    // Intentionally a no-op in this crate.
}