frostfire 0.1.0

A modular, mathematically rigorous, performant, reusable simulated annealing optimization engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Core components of the frostfire simulated annealing library.
//!
//! This module contains the fundamental abstractions and implementations
//! that form the backbone of the frostfire library:
//!
//! - `annealer`: The main optimization engine
//! - `state`: The representation of candidate solutions
//! - `energy`: The cost function to be minimized
//! - `transition`: Acceptance criteria for proposed state transitions
//! - `schedule`: Cooling schedules that control the annealing process

pub mod annealer;
pub mod energy;
pub mod schedule;
pub mod state;
pub mod transition;