...: additional arguments to be passed to the function to be optimized
red: value of the reduction of the search region
lower: The lower contraints of the search region
upper: The upper contraints of the search region
acc: if the numerical accuracy of two successive target function values is below this, stop the optimization; defaults to 1e-6
accd: if the width of the search space is below this, stop the optimization; defaults to 1e-4
itmax: maximum number of iterations
verbose: numeric value hat prints information on the fitting process; >2 is extremely verbose
adaptive: should the adaptive version be used? defaults to TRUE.
Returns
A list with the components (optim)
par The position of the optimimum in the search space (parameters that minimize the function; argmin fun)
value The value of the objective function at the optimum (min fun)
counts The number of iterations performed at convergence with entries fnction for the number of iterations and gradient which is always NA at the moment
convergence 0 successful completion by the accd or acc criterion, 1 indicate iteration limit was reached, 99 is a problem
message is NULL (only for compatibility or future use)