R/openParam.R

Defines functions openParam

openParam <- function(object) {
   ## Return character list of 'open parameters', parameters that can
   ## be supplied to max* outside of 'control' list
   ## 
   if(!inherits(object, "MaxControl")) {
      stop("'MaxControl' object required.  Currently ",
           class(object))
   }
   c("tol",
     "reltol",
     "gradtol",
     "steptol",
     #
     "lambdatol",
     ## Qadratic Approximation Control
     "qac",
     "qrtol",
     "lambda0",
     "lambdaStep",
     "maxLambda",
     ## optim Nelder-Mead
     "alpha", "beta", "gamma",
     ## SANN (open versions)
     "cand", "temp", "tmax", "random.seed",
     ## SGA
     ## - none
     ##
     "iterlim",
     "printLevel", "print.level")
}

Try the maxLik package in your browser

Any scripts or data that you put into this service are public.

maxLik documentation built on Nov. 25, 2020, 3 a.m.