Squashed 'vendor/ruvector/' content from commit b64c2172
git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
This commit is contained in:
38
examples/benchmarks/src/lib.rs
Normal file
38
examples/benchmarks/src/lib.rs
Normal file
@@ -0,0 +1,38 @@
|
||||
//! 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::*;
|
||||
Reference in New Issue
Block a user