config_sa: Configuration object for the Simulated Annealing Algorithm
Description
Create a configuration object for the Simulated Annealing algorithm (SA). At minimum the number of iterations
(parameter iterations) and the number of particles (parameter population_size) have
to be provided.
maximum number of consecutive iterations with the same
(see the parameter absolute_tol) best cost before ending the minimization. If NULL the
minimization continues for the number of iterations specified by the parameter iterations.
Default is NULL.
absolute_tol
absolute tolerance when comparing best costs from consecutive iterations.
If NULL the machine epsilon is used. Default is NULL.
T0
initial temperature. Default is 50.
Ns
number of iterations before changing velocity. Default is 3.
Nt
number of iterations before changing the temperature. Default is 3.
c_step
parameter involved in the velocity update. Default is 2.
Rt
scaling factor for the temperature. Default is 0.85.
Wmin
parameter involved in the generation of the starting point. Default is 0.25.
Wmax
parameter involved in the generation of the starting point. Default is 1.25.