evolve-core 0.2.0

Core engine for Evolve: genome trait, operators, generation cycle
Documentation
//! evolve-core: engine for evolutionary computation on LLM agents.
//!
//! See the workspace README and `docs/plans/2026-04-23-evolve-validation-design.md`
//! for the full architecture.

#![forbid(unsafe_code)]
#![warn(missing_docs)]

pub mod agent_config;
pub mod ids;
pub mod promotion;
pub mod schema;

#[cfg(test)]
mod tests {
    #[test]
    fn smoke() {
        assert_eq!(2 + 2, 4);
    }
}