ternary_science/lib.rs
1//! # Ternary Science — Experimental Evidence
2//!
3//! This crate is **not** another algorithm library. It is the **documented experimental
4//! evidence** backing the Negative Space Intelligence theory: every conservation law,
5//! every GPU benchmark, every cross-language validation result, collected in one place
6//! with the real numbers, the real hardware, and reproducible tests.
7//!
8//! ## Modules
9//!
10//! | Module | What it proves |
11//! |--------|---------------|
12//! | [`laws`] | 5 proved conservation laws with experimental data |
13//! | [`species`] | 5 universal strategy species from 2400-game GPU runs |
14//! | [`gpu_benchmarks`] | RTX 4050 hardware benchmarks |
15//! | [`scaling`] | How ternary systems scale from 24 to 24000 games |
16//! | [`cross_validation`] | Cross-language (Python/Rust/C/WASM) test results |
17//! | [`metal`] | Bare-metal embedded and ARM NEON results |
18
19pub mod laws;
20pub mod species;
21pub mod gpu_benchmarks;
22pub mod scaling;
23pub mod cross_validation;
24pub mod metal;