config {TMB} | R Documentation |
Get or set internal configuration variables
Description
Get or set internal configuration variables of user's DLL.
Usage
config(..., DLL = getUserDLL())
Arguments
... |
Variables to set |
DLL |
Name of user's DLL. Auto-detected if missing. |
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.
Value
List with current configuration
Examples
## Not run:
## 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")
## End(Not run)
[Package TMB version 1.9.14 Index]