git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
39 lines
1.1 KiB
Rust
39 lines
1.1 KiB
Rust
//! RuVector Benchmarks Library
|
|
//!
|
|
//! Comprehensive benchmarking suite for:
|
|
//! - Temporal reasoning (TimePuzzles-style constraint inference)
|
|
//! - Vector index operations (IVF, coherence-gated search)
|
|
//! - Swarm controller regret tracking
|
|
//! - Intelligence metrics and cognitive capability assessment
|
|
//! - Adaptive learning with ReasoningBank trajectory tracking
|
|
//!
|
|
//! Based on research from:
|
|
//! - TimePuzzles benchmark (arXiv:2601.07148)
|
|
//! - Sublinear regret in multi-agent control
|
|
//! - Tool-augmented iterative temporal reasoning
|
|
//! - Cognitive capability assessment frameworks
|
|
//! - lean-agentic type theory for verified reasoning
|
|
|
|
pub mod acceptance_test;
|
|
pub mod agi_contract;
|
|
pub mod intelligence_metrics;
|
|
pub mod logging;
|
|
pub mod loop_gating;
|
|
pub mod publishable_rvf;
|
|
pub mod reasoning_bank;
|
|
pub mod rvf_artifact;
|
|
pub mod rvf_intelligence_bench;
|
|
pub mod superintelligence;
|
|
pub mod swarm_regret;
|
|
pub mod temporal;
|
|
pub mod timepuzzles;
|
|
pub mod vector_index;
|
|
|
|
pub use intelligence_metrics::*;
|
|
pub use logging::*;
|
|
pub use reasoning_bank::*;
|
|
pub use swarm_regret::*;
|
|
pub use temporal::*;
|
|
pub use timepuzzles::*;
|
|
pub use vector_index::*;
|