Merge commit 'd803bfe2b1fe7f5e219e50ac20d6801a0a58ac75' as 'vendor/ruvector'
This commit is contained in:
38
vendor/ruvector/examples/benchmarks/src/lib.rs
vendored
Normal file
38
vendor/ruvector/examples/benchmarks/src/lib.rs
vendored
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