struct GSL::Siman::Params
- GSL::Siman::Params
- Struct
- Value
- Object
Overview
Parameters of simulated annealing algorithm
Defined in:
gsl/maths/optimization/siman.crConstructors
Instance Method Summary
-
#iters_fixed_t : Int32
how many iterations for each T?
-
#k : Float64
Boltzmann constant
-
#mu_t : Float64
damping factor for temperature
-
#n_tries : Int32
how many points do we try before stepping
-
#step_size : Float64
max step size in random walk
-
#t_initial : Float64
initial temperature
-
#t_min : Float64
stopping criteria - minimal temperature
Constructor Detail
def self.new(n_tries : Int32, iters_fixed_t : Int32, step_size : Float64, k : Float64, t_initial : Float64, mu_t : Float64, t_min : Float64)
#