khive_fold/objective/mod.rs
1//! Objective function framework — scoring, selection, composition.
2
3pub mod builtin;
4pub mod compose;
5mod context;
6pub mod error;
7mod selection;
8mod traits;
9
10pub use context::ObjectiveContext;
11pub use error::{ObjectiveError, ObjectiveResult};
12pub use selection::Selection;
13pub use traits::{objective_fn, DeterministicObjective, Objective};
14
15#[cfg(test)]
16mod tests;