The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
Last updated on 2026-06-14 05:50:15 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 3.2.5 | 43.54 | 117.67 | 161.21 | ERROR | |
| r-devel-linux-x86_64-debian-gcc | 3.2.5 | 29.42 | 85.15 | 114.57 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 3.2.5 | 60.00 | 142.19 | 202.19 | ERROR | |
| r-devel-linux-x86_64-fedora-gcc | 3.2.5 | 73.00 | 148.67 | 221.67 | ERROR | |
| r-devel-windows-x86_64 | 3.2.5 | 52.00 | 153.00 | 205.00 | NOTE | |
| r-patched-linux-x86_64 | 3.2.5 | 40.14 | 112.22 | 152.36 | OK | |
| r-release-linux-x86_64 | 3.2.5 | 40.80 | 110.73 | 151.53 | ERROR | |
| r-release-macos-arm64 | 3.2.5 | 10.00 | 25.00 | 35.00 | OK | |
| r-release-macos-x86_64 | 3.2.5 | 26.00 | 146.00 | 172.00 | OK | |
| r-release-windows-x86_64 | 3.2.5 | 53.00 | 177.00 | 230.00 | NOTE | |
| r-oldrel-macos-arm64 | 3.2.5 | OK | ||||
| r-oldrel-macos-x86_64 | 3.2.5 | 23.00 | 97.00 | 120.00 | OK | |
| r-oldrel-windows-x86_64 | 3.2.5 | 11.00 | 10.00 | 21.00 | ERROR |
Version: 3.2.5
Check: CRAN incoming feasibility
Result: NOTE
Maintainer: ‘Leah F. South <l1.south@qut.edu.au>’
The Description field contains
(2018) <arXiv:1809.05800>) is more robust to non-normal summary
statistics. BSLmisspec (Frazier et al. 2019 <arXiv:1904.04551>)
Please refer to arXiv e-prints via their arXiv DOI <doi:10.48550/arXiv.YYMM.NNNNN>.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc
Version: 3.2.5
Check: examples
Result: ERROR
Running examples in ‘BSL-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: MODEL-class
> ### Title: S4 class "MODEL"
> ### Aliases: MODEL-class MODEL newModel simulation,MODEL-method
> ### summStat,ANY,MODEL-method
>
> ### ** Examples
>
> # set up the model for the ma2 example
> data(ma2)
> m <- newModel(fnSim = ma2_sim, fnSum = ma2_sum, simArgs = ma2$sim_args,
+ theta0 = ma2$start, fnLogPrior = ma2_prior, verbose = FALSE)
> validObject(m)
[1] TRUE
>
> # benchmark the serial and vectorised simulation function (require the rbenchmark package)
> m1 <- newModel(fnSim = ma2_sim, fnSum = ma2_sum, simArgs = ma2$sim_args,
+ theta0 = ma2$start, fnLogPrior = ma2_prior)
*** initialize "MODEL" ***
has simulation function: TRUE
has summary statistics function: TRUE
has initial guess / point estimate of the parameter: TRUE
running a short simulation test ... success
*** end initialize ***
> m2 <- newModel(fnSimVec = ma2_sim_vec, fnSum = ma2_sum, simArgs = ma2$sim_args,
+ theta0 = ma2$start, fnLogPrior = ma2_prior)
*** initialize "MODEL" ***
has simulation function: TRUE
has summary statistics function: TRUE
has initial guess / point estimate of the parameter: TRUE
running a short simulation test ... success
*** end initialize ***
> require("rbenchmark")
Loading required package: rbenchmark
Warning in library(package, lib.loc = lib.loc, character.only = TRUE, logical.return = TRUE, :
there is no package called ‘rbenchmark’
> ## Don't show:
> benchmark(serial = simulation(m1, n = 50, theta = c(0.6, 0.2)),
+ vectorised = simulation(m2, n = 50, theta = c(0.6, 0.2)))
Error in benchmark(serial = simulation(m1, n = 50, theta = c(0.6, 0.2)), :
could not find function "benchmark"
Execution halted
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-release-linux-x86_64
Version: 3.2.5
Check: examples
Result: ERROR
Running examples in ‘BSL-Ex.R’ failed
The error most likely occurred in:
> ### Name: MODEL-class
> ### Title: S4 class "MODEL"
> ### Aliases: MODEL-class MODEL newModel simulation,MODEL-method
> ### summStat,ANY,MODEL-method
>
> ### ** Examples
>
> # set up the model for the ma2 example
> data(ma2)
> m <- newModel(fnSim = ma2_sim, fnSum = ma2_sum, simArgs = ma2$sim_args,
+ theta0 = ma2$start, fnLogPrior = ma2_prior, verbose = FALSE)
> validObject(m)
[1] TRUE
>
> # benchmark the serial and vectorised simulation function (require the rbenchmark package)
> m1 <- newModel(fnSim = ma2_sim, fnSum = ma2_sum, simArgs = ma2$sim_args,
+ theta0 = ma2$start, fnLogPrior = ma2_prior)
*** initialize "MODEL" ***
has simulation function: TRUE
has summary statistics function: TRUE
has initial guess / point estimate of the parameter: TRUE
running a short simulation test ... success
*** end initialize ***
> m2 <- newModel(fnSimVec = ma2_sim_vec, fnSum = ma2_sum, simArgs = ma2$sim_args,
+ theta0 = ma2$start, fnLogPrior = ma2_prior)
*** initialize "MODEL" ***
has simulation function: TRUE
has summary statistics function: TRUE
has initial guess / point estimate of the parameter: TRUE
running a short simulation test ... success
*** end initialize ***
> require("rbenchmark")
Loading required package: rbenchmark
Warning in library(package, lib.loc = lib.loc, character.only = TRUE, logical.return = TRUE, :
there is no package called ‘rbenchmark’
> ## Don't show:
> benchmark(serial = simulation(m1, n = 50, theta = c(0.6, 0.2)),
+ vectorised = simulation(m2, n = 50, theta = c(0.6, 0.2)))
Error in benchmark(serial = simulation(m1, n = 50, theta = c(0.6, 0.2)), :
could not find function "benchmark"
Execution halted
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc
Version: 3.2.5
Check: C++ specification
Result: NOTE
Obsolete C++11 standard request will be ignored
Flavors: r-devel-windows-x86_64, r-release-windows-x86_64
Version: 3.2.5
Check: whether package can be installed
Result: ERROR
Installation failed.
Flavor: r-oldrel-windows-x86_64
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.