primitive_innovation/lib.rs
1// Copyright (c) 2026 Matthew Campion, PharmD; NexVigilant
2// All Rights Reserved. See LICENSE file for details.
3
4//! # Primitive Innovation Lab
5//!
6//! Exploration crate for nexcore primitive ecosystem innovations.
7//! Discovers new T2-C types, cross-domain bridges, and fills gaps
8//! in the 105-pair T1 combination space.
9//!
10//! ## Organization
11//!
12//! | Module | Priority | Innovation |
13//! |--------|----------|-----------|
14//! | `location` | P1 | 5 lambda-dominant T2-C types (raises 2.6% -> ~5%) |
15//! | `frequency` | P2 | 3 nu-dominant T2-C types (raises 3.4% -> ~4.5%) |
16//! | `bridges` | P3-P5 | 3 cross-domain bridges (0 -> 3 built) |
17//! | `gaps` | P6-P8 | 3 novel pair compositions (fills Void x Freq, Void x Persist, Freq x Recur) |
18//! | `exploratory` | P10-P12 | 3 advanced bridges (quantum×stos, aggregate×cloud, transcriptase×dtree) |
19//!
20//! ## Primitive Pair Coverage
21//!
22//! Before: 78/105 pairs (74%)
23//! After: 81/105 pairs (77%) — fills 3 previously unexplored combinations
24//!
25//! ## New Types Summary (17 total)
26//!
27//! | Type | Module | Tier | Dominant | Novel Pair |
28//! |------|--------|------|----------|------------|
29//! | `SpatialIndex<V>` | location | T2-C | lambda | — |
30//! | `TopologyGraph` | location | T2-C | lambda | — |
31//! | `PathResolver<V>` | location | T2-C | lambda | — |
32//! | `RegionPartitioner` | location | T2-C | lambda | — |
33//! | `ProximityEngine<V>` | location | T2-C | lambda | — |
34//! | `AdaptivePoller` | frequency | T2-C | nu | — |
35//! | `RetryStrategy` | frequency | T2-C | nu | — |
36//! | `PeriodicMonitor` | frequency | T2-C | nu | — |
37//! | `NeuroendocrineCoordinator` | bridges | T3 | causality | — |
38//! | `EnergeticExecutor` | bridges | T2-C | causality | — |
39//! | `SchemaImmuneSystem` | bridges | T3 | kappa | — |
40//! | `AbsenceRateDetector` | gaps | T2-C | void | Void x Frequency |
41//! | `Tombstone` | gaps | T2-C | void | Void x Persistence |
42//! | `DampedOscillator` | gaps | T2-C | nu | Frequency x Recursion |
43//! | `QuantumStateSpace` | exploratory | T3 | state | quantum × stos |
44//! | `CloudResourceGraph` | exploratory | T2-C | sum | aggregate × cloud |
45//! | `SchemaGuidedSplitter` | exploratory | T2-C | comparison | transcriptase × dtree |
46
47#![forbid(unsafe_code)]
48#![warn(missing_docs)]
49#![cfg_attr(
50 not(test),
51 deny(clippy::unwrap_used, clippy::expect_used, clippy::panic)
52)]
53#![allow(
54 dead_code,
55 reason = "exploration crate — types are defined for documentation and future use"
56)]
57
58/// P1: Location (lambda) primitive expansion — 5 new T2-C types.
59pub mod location;
60
61/// P2: Frequency (nu) primitive expansion — 3 new T2-C types.
62pub mod frequency;
63
64/// P3-P5: Cross-domain bridges — 3 bridge types.
65pub mod bridges;
66
67/// P6-P8: Combination space gap fill — 3 novel pair types.
68pub mod gaps;
69
70/// P10-P12: Exploratory advanced bridges — 3 high-complexity types.
71pub mod exploratory;