Skip to main content

qualia_core_db/specialized_libs/
mod.rs

1//! Specialized Libraries Module
2//!
3//! This module contains high-performance specialized mathematical and scientific libraries
4//! that leverage Phase 2 architectural enhancements for unprecedented performance and capabilities.
5
6#[cfg(not(target_arch = "wasm32"))]
7pub mod category_theory;
8#[cfg(not(target_arch = "wasm32"))]
9pub mod chemistry_modeling;
10/// Computational economics and finance coordination layer: capability matrices,
11/// shared categorical transforms, and native economics kernels. Kept available
12/// to WASM because the first layer is metadata + zero-dependency utilities.
13pub mod computational_economics;
14/// Native computational geometry: robust predicates, topology/graph structures,
15/// Q42/10D adapters, and the computational-geometry algorithm families. Unlike the older
16/// specialized libraries this module is available to browser/WASM builds.
17pub mod computational_geometry;
18/// Computer vision pure kernels (MIG-V2 from `qualia-vision`).
19/// Native/desktop only — portal WASM browses sealed `.10d` without this tree.
20#[cfg(not(target_arch = "wasm32"))]
21pub mod computer_vision;
22#[cfg(not(target_arch = "wasm32"))]
23pub mod constructibility;
24#[cfg(not(target_arch = "wasm32"))]
25pub mod cryptographic_library;
26#[cfg(not(target_arch = "wasm32"))]
27pub mod engineering_analysis;
28#[cfg(not(target_arch = "wasm32"))]
29pub mod financial_modeling;
30#[cfg(not(target_arch = "wasm32"))]
31pub mod linear_algebra;
32#[cfg(not(target_arch = "wasm32"))]
33pub mod machine_learning;
34#[cfg(not(target_arch = "wasm32"))]
35pub mod medical_computing;
36#[cfg(not(target_arch = "wasm32"))]
37pub mod multivar_calculus;
38#[cfg(not(target_arch = "wasm32"))]
39pub mod physics_simulation;
40#[cfg(not(target_arch = "wasm32"))]
41pub mod polynomial_algebra;
42#[cfg(not(target_arch = "wasm32"))]
43pub mod qpu_bridge;
44#[cfg(not(target_arch = "wasm32"))]
45pub mod quantum_biology;
46#[cfg(not(target_arch = "wasm32"))]
47pub mod statistical_computing;
48pub mod symbolic_algebra;
49#[cfg(not(target_arch = "wasm32"))]
50pub mod symbolic_assumptions;
51#[cfg(not(target_arch = "wasm32"))]
52pub mod symbolic_integration;
53#[cfg(not(target_arch = "wasm32"))]
54pub mod symbolic_limits;
55#[cfg(not(target_arch = "wasm32"))]
56pub mod symbolic_ode;
57#[cfg(not(target_arch = "wasm32"))]
58pub mod symbolic_series;
59#[cfg(not(target_arch = "wasm32"))]
60pub mod symbolic_solve;
61#[cfg(not(target_arch = "wasm32"))]
62pub mod symbolic_trig;
63
64// Shared zero-heap utilities
65#[cfg(not(target_arch = "wasm32"))]
66pub mod shared;
67#[cfg(not(target_arch = "wasm32"))]
68pub use shared::{FixedArray, FixedQueue, FixedStack, RingBuffer};