Skip to main content

ruqu_exotic/
lib.rs

1//! # ruqu-exotic — Exotic Quantum-Classical Hybrid Algorithms
2//!
3//! Novel algorithms that emerge from embedding a quantum simulation engine
4//! inside a vector database stack. These were structurally impossible before
5//! because the required primitives (amplitude space, interference, decoherence,
6//! syndrome extraction) did not coexist with vector search infrastructure.
7//!
8//! ## Modules
9//!
10//! | Module | Concept | What it replaces |
11//! |--------|---------|-----------------|
12//! | [`quantum_decay`] | Embeddings decohere instead of being deleted | TTL-based eviction |
13//! | [`interference_search`] | Concepts interfere during retrieval | Cosine reranking |
14//! | [`quantum_collapse`] | Search collapses from superposition | Deterministic top-k |
15//! | [`reasoning_qec`] | Surface-code correction on reasoning traces | Semantic checks |
16//! | [`swarm_interference`] | Agents interfere instead of voting | Consensus protocols |
17//! | [`syndrome_diagnosis`] | QEC syndrome extraction for system diagnosis | Log-based monitoring |
18//! | [`reversible_memory`] | Time-reversible state for counterfactual debugging | Forward-only ML |
19//! | [`reality_check`] | Browser-native quantum verification circuits | Trust-based claims |
20
21pub mod quantum_decay;
22pub mod interference_search;
23pub mod quantum_collapse;
24pub mod reasoning_qec;
25pub mod swarm_interference;
26pub mod syndrome_diagnosis;
27pub mod reversible_memory;
28pub mod reality_check;