diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2023-04-15 15:35:06 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2023-04-15 15:35:06 +0200 |
commit | b0b710ee9f9bb9bbe9708676d0c5822465e02203 (patch) | |
tree | 537dcf86326ab2e03100a5defb11b264a4b72a17 /man/mkinpredict.Rd | |
parent | 50ea6d11f8c79218c98ee8ae56d8bdcd42cc703a (diff) |
Make predefined symbols safer
We still need to create a parallel processing cluster _after_ creating a
compiled model that is moved to a user defined location, at least I did
not find another way to make it work. This is not a problem with
parallel processing without a cluster, which is not available on
Windows.
Diffstat (limited to 'man/mkinpredict.Rd')
-rw-r--r-- | man/mkinpredict.Rd | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/man/mkinpredict.Rd b/man/mkinpredict.Rd index ad749fa4..792d0e47 100644 --- a/man/mkinpredict.Rd +++ b/man/mkinpredict.Rd @@ -15,6 +15,7 @@ mkinpredict(x, odeparms, odeini, outtimes, ...) outtimes = seq(0, 120, by = 0.1), solution_type = "deSolve", use_compiled = "auto", + use_symbols = FALSE, method.ode = "lsoda", atol = 1e-08, rtol = 1e-10, @@ -67,6 +68,9 @@ parent compound.} \item{use_compiled}{If set to \code{FALSE}, no compiled version of the \link{mkinmod} model is used, even if is present.} +\item{use_symbols}{If set to \code{TRUE} (default), symbol info present in +the \link{mkinmod} object is used if available for accessing compiled code} + \item{method.ode}{The solution method passed via \link{mkinpredict} to \link{ode}] in case the solution type is "deSolve" and we are not using compiled code. When using compiled code, only lsoda is supported.} |