proof-of-sql 0.129.1

High performance zero knowledge (ZK) prover for SQL.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! This module defines math utilities used in Proof of SQL.
/// Handles parsing between decimal tokens received from the lexer into native `Decimal75` Proof of SQL type.
pub mod decimal;
#[cfg(test)]
mod decimal_tests;
/// Module containing [I256] type.
pub mod i256;
mod log;
pub(crate) use log::log2_up;
mod big_decimal_ext;
pub use big_decimal_ext::BigDecimalExt;
/// Module providing permutation utilities for reordering data in proof computations.
pub(crate) mod permutation;