Implementation of the DIRECT global optimization algorithm in the
one-dimensional case.
Usage
direct1d(f, a, b, maxiter = 20, ...)
Arguments
f
function to be minimized.
a, b
end points of the interval, a.
maxiter
maximum number of iterations.
...
further parameters to be passed to the function.
Value
List with components xmin and fmin, the minimum found so far
and its function value.
Details
The DIRECT algorithm for the one-dimensional case is directly derived from
Shubert's algorithm. Instead of computing the function at the endpoints of
the interval, it is computed at the midpoint. Intervals ar split in three
parts, sparing one function evaluation.
References
Jones, D. R., C. D. Perttunen, and B. E. Stuckman (1993). Lipschitzian
Optimization Without the Lipschitz Constant. Journal of Optimization
Theory and Application, Vol. 79. No. 1, pp. 157ff.
Finkel, D., and C. Kelley (2006). Additive Scaling and the DIRECT Algorithm.
Journal of Global Optimization, Vol. 36, No. 4, pp. 597--608.