Argument control
is a list specifing any changes to default values of algorithm control parameters for the outer loop. The list items are as follows:
tol
Convergence tolerance. Iteration is terminated when the absolute difference in function value between successive iteration is below tol
. Default is 1.e-06.
maxfeval
: Maximum number of objective function evaluations allowed. Default is 10000).
trace
A logical variable indicating whether information is printed on the console during execution. Default is TRUE.
maximize
A logical variable indicating whether the objective function should be maximized. Default is FALSE (hence default is minimization).
pollStyle
A string variable indicating density of the poll set, or, number of vectors in the positive basis. Choices are: ``lite'' (n+1 points) or ``full'' (2n points). Default is ``lite''.
deltaInit
A numerical value specifying the initial mesh size, between ``tol'' and 1 (mesh size is limited to 1). Default is 0.01.
expand
A numerical value >1 specifying the expansion (is success) and contraction (if no success) factor of the mesh at the end of an iteration. Default is 4.
lineSearch
A integer value indicating the maximum of search steps to consider. Line search is performed at the end of a successful poll set evaluation, along the line going from last to new ``best'' solution. Stepsize will be automatically increased according to the Fibonacci series. Default is 20. Set to -1 to disable the feature.
seed
Seed value for the internal pseudo random numbers generator. Default is 1138.