evolve_core/lib.rs
1//! evolve-core: engine for evolutionary computation on LLM agents.
2//!
3//! See the workspace README and `docs/plans/2026-04-23-evolve-validation-design.md`
4//! for the full architecture.
5
6#![forbid(unsafe_code)]
7#![warn(missing_docs)]
8
9pub mod agent_config;
10pub mod ids;
11pub mod promotion;
12pub mod schema;
13
14#[cfg(test)]
15mod tests {
16 #[test]
17 fn smoke() {
18 assert_eq!(2 + 2, 4);
19 }
20}