package gsl

  1. Overview
  2. Docs

Simulated Annealing

NB: This module is not interfaced to GSL, it is implemented in OCaml. It is quite simple in fact, so rather than using it you may want to copy the code and tweak the algorithm in your own program.

type params = {
  1. iters_fixed_T : int;
    (*

    The number of iterations at each temperature

    *)
  2. step_size : float;
    (*

    The maximum step size in the random walk

    *)
  3. k : float;
    (*

    parameter of the Boltzmann distribution

    *)
  4. t_initial : float;
    (*

    initial temperature

    *)
  5. mu_t : float;
    (*

    cooling factor

    *)
  6. t_min : float;
    (*

    minimum temperature

    *)
}
val solve : Rng.t -> 'a -> energ_func:('a -> float) -> step_func:(Rng.t -> 'a -> float -> 'a) -> ?print_func:('a -> unit) -> params -> 'a