diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2014-07-14 19:07:54 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2014-07-14 19:07:54 +0200 |
commit | a69bf39427ff4f93eebdc8bceacb8174ff13c085 (patch) | |
tree | c5fcafef941417941db880b119a0452f19a3a51b /R/mkinpredict.R | |
parent | 59f96473c7ee7b00f8b4fe5bd8d866ad6cadd048 (diff) |
Nearly complete support for IORE, pending mkinerrmin
Diffstat (limited to 'R/mkinpredict.R')
-rw-r--r-- | R/mkinpredict.R | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/R/mkinpredict.R b/R/mkinpredict.R index 43b5d2f3..da013d50 100644 --- a/R/mkinpredict.R +++ b/R/mkinpredict.R @@ -109,6 +109,10 @@ mkinpredict <- function(mkinmod, odeparms, odeini, rtol = rtol, ... ) + if (sum(is.na(out)) > 0) { + stop("Differential equations were not integrated for all output times because\n", + "NaN values occurred in output from ode()") + } } if (map_output) { # Output transformation for models with unobserved compartments like SFORB |