config | R Documentation |
Get or set internal configuration variables of user's DLL.
config(..., DLL = getUserDLL())
... |
Variables to set |
DLL |
Name of user's DLL. Auto-detected if missing. |
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.
List with current configuration
## 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.