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
//! Fixed-Point Arithmetic Module — Canonical FASC+UGOD Pipeline
//!
//! **Public API**: [`canonical`] module — `use g_math::canonical::{gmath, evaluate};`
//!
//! All other modules are internal implementation details.
/// Canonical FASC entry point — the public API for gMath.
/// Imperative numeric types — `FixedPoint`, `FixedVector`, `FixedMatrix`.
pub use ;
/// TQ1.9 compact ternary operations — standalone, decoupled from FASC/routing.
/// Gated behind the `inference` feature flag.
/// Public compute-tier (tier N+1) transcendentals over raw `ComputeStorage`.
/// Gated behind the `inference` feature flag.
/// Build-time Q-format configuration (FRAC_BITS and derived constants).
// Internal modules — pub for integration test access, hidden from docs
// ============================================================================
// Internal re-exports — convenience paths for crate-internal use.
// NOT part of the public API. Use `g_math::canonical::*` instead.
// ============================================================================
pub use binary_fixed;
pub use symbolic;
// Binary domain types (used across internal codebase)
pub use ;
pub use ;
// Decimal domain: `g_math::fixed_point::DecimalFixed` is a supported public type
// (the `domains` module itself stays doc-hidden — this is the documented path).
pub use DecimalFixed;
// Rational arithmetic types (used in stack_evaluator)
pub use ;
// Prime table (build-time generated, 1,145 primes up to 9,973)
pub use prime_table;