Adds a tiny additive surface that turns any OptimizationResult into
a self-describing JSON file the heuropt-explorer webapp can load.
Real Pareto fronts have 50–200+ candidates spanning 2–7+ objectives;
reading them as numbers in a terminal scales badly. This commit
ships the heuropt-side of the explorer — the schema and the export
API. The webapp itself lives in a separate repo on its own cadence.
Three trait/type extensions, all with working defaults so existing
impls compile untouched:
- Objective gains optional `label: Option<String>` and
`unit: Option<String>` fields, plus fluent builders
`.with_label("Price").with_unit(\"\$k\")`. Existing
`Objective::minimize(name)` / `Objective::maximize(name)` are
unchanged. Both fields are #[serde(default,
skip_serializing_if = \"Option::is_none\")] so existing JSON
round-trips cleanly.
- Problem trait gains an optional
`fn decision_schema(&self) -> Vec<DecisionVariable>` with default
empty impl. Override it to provide pretty names / labels / units /
bounds for the explorer; the default produces fallback x[0],
x[1], … names. New DecisionVariable type at
`heuropt::core::DecisionVariable` with builder methods.
- New `heuropt::traits::AlgorithmInfo` trait with `name()`
(required) and `seed()` (default None). Every built-in algorithm
— all 33 — implements it. Separate from Optimizer<P> so
multi-fidelity Hyperband (which uses PartialProblem) implements
it uniformly.
The new explorer module:
- `heuropt::explorer::ExplorerExport` envelope with versioned
schema (SCHEMA_VERSION = 1).
- ExplorerCandidate per row, with front_rank from
non_dominated_sort attached at export time so downstream tools
don't re-derive it.
- ToDecisionValues adapter trait with provided impls for Vec<f64>,
Vec<bool>, Vec<usize>, Vec<i64>; custom decision types implement
one method.
- Free functions to_json / to_writer / to_file plus a builder API
(with_algorithm_info, with_problem_name, with_wall_clock,
with_timestamp).
- Gated on the existing `serde` feature, which now also pulls in
`serde_json` as a dep.
The example:
- `examples/pick_a_car.rs` — promotes the README's PickACar to a
real example, fully enriched with Objective labels/units and a
decision_schema. Runs NSGA-III for 200 generations, prints a
sample slice, writes pick_a_car.json. Gated on `serde`.
10 new explorer unit tests cover round-trip serde, fallback
decision-variable names, enriched export, AlgorithmInfo flow,
front-rank correctness, and the ToDecisionValues impls. Lib test
count went from 229 to 242.
284 lines
9.0 KiB
Rust
284 lines
9.0 KiB
Rust
//! `HillClimber` — single-objective greedy local search.
|
|
|
|
use crate::core::candidate::Candidate;
|
|
use crate::core::objective::Direction;
|
|
use crate::core::population::Population;
|
|
use crate::core::problem::Problem;
|
|
use crate::core::result::OptimizationResult;
|
|
use crate::core::rng::rng_from_seed;
|
|
use crate::traits::{Initializer, Optimizer, Variation};
|
|
|
|
/// Configuration for [`HillClimber`].
|
|
#[derive(Debug, Clone)]
|
|
pub struct HillClimberConfig {
|
|
/// Number of mutation iterations.
|
|
pub iterations: usize,
|
|
/// Seed for the deterministic RNG.
|
|
pub seed: u64,
|
|
}
|
|
|
|
impl Default for HillClimberConfig {
|
|
fn default() -> Self {
|
|
Self {
|
|
iterations: 1000,
|
|
seed: 42,
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Single-objective greedy hill climber.
|
|
///
|
|
/// Starts from one initializer-sampled decision, repeatedly mutates it via
|
|
/// the variation operator, and keeps the child only when it is strictly
|
|
/// better than the current incumbent. Standard feasibility tiebreaks apply:
|
|
/// feasible beats infeasible, smaller violation wins among infeasibles.
|
|
///
|
|
/// Single-objective only.
|
|
///
|
|
/// # Example
|
|
///
|
|
/// ```
|
|
/// use heuropt::prelude::*;
|
|
///
|
|
/// struct Sphere;
|
|
/// impl Problem for Sphere {
|
|
/// type Decision = Vec<f64>;
|
|
/// fn objectives(&self) -> ObjectiveSpace {
|
|
/// ObjectiveSpace::new(vec![Objective::minimize("f")])
|
|
/// }
|
|
/// fn evaluate(&self, x: &Vec<f64>) -> Evaluation {
|
|
/// Evaluation::new(vec![x.iter().map(|v| v * v).sum::<f64>()])
|
|
/// }
|
|
/// }
|
|
///
|
|
/// let mut opt = HillClimber::new(
|
|
/// HillClimberConfig { iterations: 500, seed: 42 },
|
|
/// RealBounds::new(vec![(-5.0, 5.0); 3]),
|
|
/// GaussianMutation { sigma: 0.3 },
|
|
/// );
|
|
/// let r = opt.run(&Sphere);
|
|
/// assert!(r.best.is_some());
|
|
/// ```
|
|
#[derive(Debug, Clone)]
|
|
pub struct HillClimber<I, V> {
|
|
/// Algorithm configuration.
|
|
pub config: HillClimberConfig,
|
|
/// Initial-decision sampler.
|
|
pub initializer: I,
|
|
/// Mutation operator.
|
|
pub variation: V,
|
|
}
|
|
|
|
impl<I, V> HillClimber<I, V> {
|
|
/// Construct a `HillClimber`.
|
|
pub fn new(config: HillClimberConfig, initializer: I, variation: V) -> Self {
|
|
Self {
|
|
config,
|
|
initializer,
|
|
variation,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<P, I, V> Optimizer<P> for HillClimber<I, V>
|
|
where
|
|
P: Problem + Sync,
|
|
P::Decision: Send,
|
|
I: Initializer<P::Decision>,
|
|
V: Variation<P::Decision>,
|
|
{
|
|
fn run(&mut self, problem: &P) -> OptimizationResult<P::Decision> {
|
|
let objectives = problem.objectives();
|
|
assert!(
|
|
objectives.is_single_objective(),
|
|
"HillClimber requires exactly one objective",
|
|
);
|
|
let direction = objectives.objectives[0].direction;
|
|
let mut rng = rng_from_seed(self.config.seed);
|
|
|
|
let mut initial = self.initializer.initialize(1, &mut rng);
|
|
assert!(
|
|
!initial.is_empty(),
|
|
"HillClimber initializer returned no decisions"
|
|
);
|
|
let mut current_decision = initial.remove(0);
|
|
let mut current_eval = problem.evaluate(¤t_decision);
|
|
let mut evaluations = 1usize;
|
|
|
|
for _ in 0..self.config.iterations {
|
|
let parents = vec![current_decision.clone()];
|
|
let children = self.variation.vary(&parents, &mut rng);
|
|
assert!(
|
|
!children.is_empty(),
|
|
"HillClimber variation returned no children"
|
|
);
|
|
let child_decision = children.into_iter().next().unwrap();
|
|
let child_eval = problem.evaluate(&child_decision);
|
|
evaluations += 1;
|
|
|
|
let child_better = match (child_eval.is_feasible(), current_eval.is_feasible()) {
|
|
(true, false) => true,
|
|
(false, true) => false,
|
|
(false, false) => {
|
|
child_eval.constraint_violation < current_eval.constraint_violation
|
|
}
|
|
(true, true) => match direction {
|
|
Direction::Minimize => child_eval.objectives[0] < current_eval.objectives[0],
|
|
Direction::Maximize => child_eval.objectives[0] > current_eval.objectives[0],
|
|
},
|
|
};
|
|
if child_better {
|
|
current_decision = child_decision;
|
|
current_eval = child_eval;
|
|
}
|
|
}
|
|
|
|
let best = Candidate::new(current_decision, current_eval);
|
|
let population = Population::new(vec![best.clone()]);
|
|
let front = vec![best.clone()];
|
|
OptimizationResult::new(
|
|
population,
|
|
front,
|
|
Some(best),
|
|
evaluations,
|
|
self.config.iterations,
|
|
)
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "async")]
|
|
impl<I, V> HillClimber<I, V> {
|
|
/// Async version of [`Optimizer::run`] — drives evaluations through
|
|
/// the user-chosen async runtime. Available only with the `async`
|
|
/// feature.
|
|
///
|
|
/// `concurrency` is mostly inert here because HillClimber evaluates
|
|
/// one child per iteration; it's accepted for API parity with other
|
|
/// algorithms.
|
|
pub async fn run_async<P>(
|
|
&mut self,
|
|
problem: &P,
|
|
concurrency: usize,
|
|
) -> OptimizationResult<P::Decision>
|
|
where
|
|
P: crate::core::async_problem::AsyncProblem,
|
|
I: Initializer<P::Decision>,
|
|
V: Variation<P::Decision>,
|
|
{
|
|
let _ = concurrency;
|
|
let objectives = problem.objectives();
|
|
assert!(
|
|
objectives.is_single_objective(),
|
|
"HillClimber requires exactly one objective",
|
|
);
|
|
let direction = objectives.objectives[0].direction;
|
|
let mut rng = rng_from_seed(self.config.seed);
|
|
|
|
let mut initial = self.initializer.initialize(1, &mut rng);
|
|
assert!(
|
|
!initial.is_empty(),
|
|
"HillClimber initializer returned no decisions"
|
|
);
|
|
let mut current_decision = initial.remove(0);
|
|
let mut current_eval = problem.evaluate_async(¤t_decision).await;
|
|
let mut evaluations = 1usize;
|
|
|
|
for _ in 0..self.config.iterations {
|
|
let parents = vec![current_decision.clone()];
|
|
let children = self.variation.vary(&parents, &mut rng);
|
|
assert!(
|
|
!children.is_empty(),
|
|
"HillClimber variation returned no children"
|
|
);
|
|
let child_decision = children.into_iter().next().unwrap();
|
|
let child_eval = problem.evaluate_async(&child_decision).await;
|
|
evaluations += 1;
|
|
|
|
let child_better = match (child_eval.is_feasible(), current_eval.is_feasible()) {
|
|
(true, false) => true,
|
|
(false, true) => false,
|
|
(false, false) => {
|
|
child_eval.constraint_violation < current_eval.constraint_violation
|
|
}
|
|
(true, true) => match direction {
|
|
Direction::Minimize => child_eval.objectives[0] < current_eval.objectives[0],
|
|
Direction::Maximize => child_eval.objectives[0] > current_eval.objectives[0],
|
|
},
|
|
};
|
|
if child_better {
|
|
current_decision = child_decision;
|
|
current_eval = child_eval;
|
|
}
|
|
}
|
|
|
|
let best = Candidate::new(current_decision, current_eval);
|
|
let population = Population::new(vec![best.clone()]);
|
|
let front = vec![best.clone()];
|
|
OptimizationResult::new(
|
|
population,
|
|
front,
|
|
Some(best),
|
|
evaluations,
|
|
self.config.iterations,
|
|
)
|
|
}
|
|
}
|
|
|
|
impl<I, V> crate::traits::AlgorithmInfo for HillClimber<I, V> {
|
|
fn name(&self) -> &'static str {
|
|
"HillClimber"
|
|
}
|
|
fn seed(&self) -> Option<u64> {
|
|
Some(self.config.seed)
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
use crate::operators::{GaussianMutation, RealBounds};
|
|
use crate::tests_support::{SchafferN1, Sphere1D};
|
|
|
|
fn make_optimizer(seed: u64) -> HillClimber<RealBounds, GaussianMutation> {
|
|
HillClimber::new(
|
|
HillClimberConfig {
|
|
iterations: 500,
|
|
seed,
|
|
},
|
|
RealBounds::new(vec![(-5.0, 5.0)]),
|
|
GaussianMutation { sigma: 0.3 },
|
|
)
|
|
}
|
|
|
|
#[test]
|
|
fn finds_minimum_of_sphere() {
|
|
let mut opt = make_optimizer(1);
|
|
let r = opt.run(&Sphere1D);
|
|
let best = r.best.unwrap();
|
|
assert!(
|
|
best.evaluation.objectives[0] < 1e-2,
|
|
"got f = {}",
|
|
best.evaluation.objectives[0]
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn deterministic_with_same_seed() {
|
|
let mut a = make_optimizer(99);
|
|
let mut b = make_optimizer(99);
|
|
let ra = a.run(&Sphere1D);
|
|
let rb = b.run(&Sphere1D);
|
|
assert_eq!(
|
|
ra.best.unwrap().evaluation.objectives,
|
|
rb.best.unwrap().evaluation.objectives,
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic(expected = "exactly one objective")]
|
|
fn multi_objective_panics() {
|
|
let mut opt = make_optimizer(0);
|
|
let _ = opt.run(&SchafferN1);
|
|
}
|
|
}
|