routa-entrix 0.14.3

Entrix fitness function engine — Rust implementation of tools/entrix
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Entrix — Rust implementation of the fitness function engine.
//!
//! This crate provides the core logic for evolutionary architecture fitness
//! functions, matching the behavior of `tools/entrix` (Python).

pub mod evidence;
pub mod governance;
pub mod model;
pub mod reporting;
pub mod runner;
pub mod scoring;
pub mod test_mapping;