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
17
//! Convenient re-exports of commonly used types and functions.
//!
//! This module re-exports the most commonly used items from the frostfire crate,
//! allowing users to import them all with a single `use frostfire::prelude::*` statement.

pub use crate::core::annealer::{Annealer, AnnealingResult};
pub use crate::core::energy::Energy;
pub use crate::core::schedule::{
    AdaptiveSchedule, GeometricSchedule, LogarithmicSchedule, Schedule,
};
pub use crate::core::state::State;
pub use crate::core::transition::accept;
pub use crate::rng::seeded_rng::seeded_rng;

// Re-export commonly used external types
pub use rand::rngs::StdRng;
pub use rand::Rng;