diff options
| author | Ranke Johannes <johannes.ranke@agroscope.admin.ch> | 2026-06-22 15:52:45 +0200 |
|---|---|---|
| committer | Ranke Johannes <johannes.ranke@agroscope.admin.ch> | 2026-06-22 15:52:45 +0200 |
| commit | a18b7e5968e25c41a18ca3e6ba5d01a96e9eb408 (patch) | |
| tree | 3e4fca9a5ca8108f5297213ada9c3968fcef5d8d | |
| parent | a5a73e8d76faff5983399386de571431e8824636 (diff) | |
Avoid uninformative warning
This warning is currently triggered in the examples for IORE.solution.
| -rw-r--r-- | R/mkinfit.R | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/R/mkinfit.R b/R/mkinfit.R index 52053685..39f5b1a3 100644 --- a/R/mkinfit.R +++ b/R/mkinfit.R @@ -510,7 +510,8 @@ mkinfit <- function(mkinmod, observed, mkinmod[["symbols"]] <- try( deSolve::checkDLL(dllname = mkinmod$dll_info[["name"]], func = "diffs", initfunc = "initpar", - jacfunc = NULL, nout = 0, outnames = NULL)) + jacfunc = NULL, nout = 0, outnames = NULL), + silent = TRUE) if (!inherits(mkinmod[["symbols"]], "try-error")) { use_symbols = TRUE } |
