scirs2_series/advanced_fusion_intelligence/
mod.rs

1//! Advanced Fusion Intelligence Modules
2//!
3//! This module provides the modular implementation of the Advanced Fusion Intelligence
4//! system, breaking down the large monolithic implementation into focused modules
5//! for better maintainability and organization.
6
7pub mod consciousness;
8pub mod distributed;
9pub mod evolution;
10pub mod meta_learning;
11pub mod neuromorphic;
12pub mod quantum;
13pub mod temporal;
14
15// Re-export all public types - suppress ambiguity warnings
16#[allow(ambiguous_glob_reexports)]
17pub use consciousness::*;
18#[allow(ambiguous_glob_reexports)]
19pub use distributed::*;
20#[allow(ambiguous_glob_reexports)]
21pub use evolution::*;
22#[allow(ambiguous_glob_reexports)]
23pub use meta_learning::*;
24#[allow(ambiguous_glob_reexports)]
25pub use neuromorphic::*;
26#[allow(ambiguous_glob_reexports)]
27pub use quantum::*;
28#[allow(ambiguous_glob_reexports)]
29pub use temporal::*;