Get or set internal configuration variables of user's DLL.

config(..., DLL = getUserDLL())

Arguments

...

Variables to set

DLL

Name of user's DLL. Auto-detected if missing.

Value

List with current configuration

Details

A model compiled with the TMB C++ library has several configuration variables set by default. The variables can be read and modified using this function. The meaning of the variables can be found in the Doxygen documentation.

Examples

if (FALSE) { # \dontrun{
## Load library
dyn.load(dynlib("mymodel"))
## Read the current settings
config(DLL="mymodel")
## Reduce memory peak of a parallel model by creating tapes in serial
config(tape.parallel=0, DLL="mymodel")
obj <- MakeADFun(..., DLL="mymodel")
} # }