config_cs: Configuration object for the Cuckoo Search Algorithm
Description
Create a configuration object for the Cuckoo Search Algorithm (CS). At minimum the number of iterations
(parameter iterations) and the number of host nests (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.
discovery_rate
probability for the egg laid by a cuckoo to be discovered by the host bird. It
should be between 0 and 1. Default is 0.25.