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
//! # Rational Arithmetic Domain
//!
//! Pure rational arithmetic (a/b) with tiered storage (i8 to I512, optional BigInt)
//! optimization, and exact fraction arithmetic for the symbolic domain.
//!
//! ## Core Components
//!
//! - **rational_number**: Main RationalNumber type with 7-tier storage hierarchy
//! - **rational_conversion**: Cross-domain conversion utilities
//! - **mathematical_constants**: Pre-computed rational constants
//!
//! ## Public API
//!
//! - `RationalNumber`: Arbitrary-precision rational arithmetic type
//! - `RationalStorage`: 7-tier storage optimization (Tiny → Ultra)
//! - `SymbolicConstants`: Pre-computed mathematical constants (π, e, √2, etc.)
//!
//! ## Integration Points
//!
//! - **UGOD**: Automatic tier escalation on overflow
//! - **FASC**: Zero-allocation stack computation integration
// Re-export primary types for domain-level access
pub use ;
// Re-export conversion types
pub use ParseError;
// SymbolicConstants is the canonical source for all mathematical constants across all domains
pub use SymbolicConstants;