diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2018-03-01 14:32:46 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2018-03-01 14:32:46 +0100 |
commit | 6653ff2507f45eae909f491a9af3f1eb5358a600 (patch) | |
tree | 03a43f9cf86cc1d675eba1c6f9c5e31da9c2acdd /vignettes/compiled_models.Rmd | |
parent | a767013f407f7495492af6a1ceba4cf2b8aae839 (diff) |
Static documentation rebuilt using current pkgdown::build_site()
Diffstat (limited to 'vignettes/compiled_models.Rmd')
-rw-r--r-- | vignettes/compiled_models.Rmd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vignettes/compiled_models.Rmd b/vignettes/compiled_models.Rmd index e97876da..b16dfea6 100644 --- a/vignettes/compiled_models.Rmd +++ b/vignettes/compiled_models.Rmd @@ -92,10 +92,10 @@ Here we get a performance benefit of a factor of `r factor_FOMC_SFO`
using the version of the differential equation model compiled from C code!
-This vignette was built with mkin `r packageVersion("mkin")` on
+This vignette was built with mkin `r utils::packageVersion("mkin")` on
```{r sessionInfo, echo = FALSE}
-cat(capture.output(sessionInfo())[1:3], sep = "\n")
+cat(utils::capture.output(utils::sessionInfo())[1:3], sep = "\n")
if(!inherits(try(cpuinfo <- readLines("/proc/cpuinfo")), "try-error")) {
cat(gsub("model name\t: ", "CPU model: ", cpuinfo[grep("model name", cpuinfo)[1]]))
}
|