#optimization #problem #solver #heuristics #vrp #routing #vehicle

rosomaxa

A rosomaxa algorithm and other building blocks for creating a solver for optimization problems

17 releases

0.8.0 Jul 13, 2024
0.7.2 Dec 22, 2023
0.7.1 Aug 26, 2023
0.6.0 Jun 9, 2023
0.1.1 Mar 10, 2022

#1356 in Algorithms

Download history 47/week @ 2024-07-15 1/week @ 2024-07-22 48/week @ 2024-07-29 23/week @ 2024-08-05 13/week @ 2024-08-12 22/week @ 2024-08-19 34/week @ 2024-08-26 13/week @ 2024-09-02 25/week @ 2024-09-09 36/week @ 2024-09-16 26/week @ 2024-09-23 34/week @ 2024-09-30 31/week @ 2024-10-07 19/week @ 2024-10-14 28/week @ 2024-10-21 9/week @ 2024-10-28

87 downloads per month
Used in 5 crates (via vrp-core)

Apache-2.0

215KB
5K SLoC

Description

This crate exposes generalized hyper heuristics and some helper functionality which can be used to build a solver for various optimization problems.

More details are coming.


lib.rs:

This crate exposes a generalized hyper heuristics and some helper functionality which can be used to build a solver for optimization problems.

Examples

This example demonstrates the usage of example models and heuristics to minimize Rosenbrock function. For the sake of minimalism, there is a pre-built solver and heuristic operator models. Check example module to see how to use functionality of the crate for an arbitrary domain.

use rosomaxa::prelude::*;
use rosomaxa::example::*;

let random = Arc::new(DefaultRandom::default());
// examples of heuristic operator, they are domain specific. Essentially, heuristic operator
// is responsible to produce a new, potentially better solution from the given one.
let noise_op = VectorHeuristicOperatorMode::JustNoise(Noise::new_with_ratio(1., (-0.1, 0.1), random));
let delta_op = VectorHeuristicOperatorMode::JustDelta(-0.1..0.1);
let delta_power_op = VectorHeuristicOperatorMode::JustDelta(-0.5..0.5);

// add some configuration and run the solver
let (solutions, _) = Solver::default()
    .with_fitness_fn(create_rosenbrock_function())
    .with_init_solutions(vec![vec![2., 2.]])
    .with_search_operator(noise_op, "noise", 1.)
    .with_search_operator(delta_op, "delta", 0.2)
    .with_diversify_operator(delta_power_op)
    .with_termination(Some(5), Some(1000), None, None)
    .solve()
    .expect("cannot build and use solver");

// expecting at least one solution with fitness close to 0
assert_eq!(solutions.len(), 1);
let (_, fitness) = solutions.first().unwrap();
assert!(*fitness < 0.001);

Dependencies

~2.1–2.8MB
~53K SLoC