Random Search derivative-free optimization
random_search(
objective,
lower,
upper,
seed = 123,
control = list(iter.max = 100)
)
objective function to be minimized
lower bound for search
upper bound for search
an integer, for reproducing the result
a list of control parameters. For now control = list(iter.max=100)
,
where iter.max
is the maximum number of iterations allowed
A list with components
par
the best set of parameters found
objective
the value of objective corresponding to par
iterations
number of iterations performed