Skip to main content

routa_entrix/
lib.rs

1//! Entrix — Rust implementation of the fitness function engine.
2//!
3//! This crate provides the core logic for evolutionary architecture fitness
4//! functions, matching the behavior of `tools/entrix` (Python).
5
6pub mod evidence;
7pub mod governance;
8pub mod model;
9pub mod reporting;
10pub mod runner;
11pub mod scoring;
12pub mod test_mapping;