mirror of
https://github.com/samvallad33/vestige.git
synced 2026-06-24 21:38:07 +02:00
FSRS-6 spaced repetition, spreading activation, synaptic tagging, hippocampal indexing, and 130 years of memory research. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
402 B
Rust
14 lines
402 B
Rust
//! # Extreme E2E Tests
|
|
//!
|
|
//! Comprehensive extreme testing for Vestige's memory system:
|
|
//! - Chaos testing for resilience
|
|
//! - Adversarial input handling
|
|
//! - Mathematical validation
|
|
//! - Research validation against published findings
|
|
//! - Proof of superiority benchmarks
|
|
|
|
mod adversarial_tests;
|
|
mod chaos_tests;
|
|
mod mathematical_tests;
|
|
mod proof_of_superiority;
|
|
mod research_validation_tests;
|