Last updated on 2026-07-23 07:51:44 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 1.1-2 | 22.08 | 205.75 | 227.83 | NOTE | |
| r-devel-linux-x86_64-debian-gcc | 1.1-2 | 16.06 | 156.89 | 172.95 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 1.1-2 | 37.00 | 355.26 | 392.26 | NOTE | |
| r-devel-linux-x86_64-fedora-gcc | 1.1-2 | 15.00 | 137.17 | 152.17 | NOTE | |
| r-devel-windows-x86_64 | 1.1-2 | 61.00 | 255.00 | 316.00 | NOTE | |
| r-patched-linux-x86_64 | 1.1-2 | 23.14 | 195.12 | 218.26 | OK | |
| r-release-linux-x86_64 | 1.1-2 | 21.16 | 194.84 | 216.00 | OK | |
| r-release-macos-arm64 | 1.1-2 | 8.00 | 54.00 | 62.00 | OK | |
| r-release-macos-x86_64 | 1.1-2 | 24.00 | 266.00 | 290.00 | OK | |
| r-release-windows-x86_64 | 1.1-2 | 69.00 | 269.00 | 338.00 | OK | |
| r-oldrel-macos-arm64 | 1.1-2 | OK | ||||
| r-oldrel-macos-x86_64 | 1.1-2 | 26.00 | 367.00 | 393.00 | OK | |
| r-oldrel-windows-x86_64 | 1.1-2 | 74.00 | 294.00 | 368.00 | OK |
Version: 1.1-2
Check: re-building of vignette outputs
Result: NOTE
Warning in re-building vignettes:
From the bibliography engine:
I didn't find a database entry for "FousseHLPZ:2007"
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-x86_64
Version: 1.1-2
Check: tests
Result: ERROR
Running ‘arith-ex.R’ [4s/6s]
Running ‘binomial-etc.R’ [1s/2s]
Running ‘bit-repr.R’ [1s/1s]
Running ‘create.R’ [1s/1s]
Running ‘functionals.R’ [12s/16s]
Running ‘lowlevel.R’ [1s/1s]
Running ‘matrix-ex.R’ [1s/1s]
Running ‘special-fun-dgamma.R’ [27s/35s]
Running ‘special-fun-ex.R’ [10s/12s]
Running ‘tstHexBin.R’ [1s/2s]
Running the tests in ‘tests/create.R’ failed.
Complete output:
> require("Rmpfr")
Loading required package: Rmpfr
Loading required package: gmp
Attaching package: 'gmp'
The following objects are masked from 'package:base':
%*%, apply, crossprod, matrix, tcrossprod
C code of R package 'Rmpfr': GMP using 64 bits per limb
Attaching package: 'Rmpfr'
The following object is masked from 'package:gmp':
outer
The following objects are masked from 'package:stats':
dbinom, dchisq, dgamma, dnbinom, dnorm, dpois, dt, pgamma, pnorm
The following objects are masked from 'package:base':
cbind, pmax, pmin, rbind
>
> ### Simple basic examples of creation of "mpfr" objects
>
> pi. <- Const("pi", prec = 260)
> pi. # nicely prints 80 digits [260 * log10(2) ~= 78.3 ~ 80]
1 'mpfr' number of precision 260 bits
[1] 3.1415926535897932384626433832795028841971693993751058209749445923078164062862088
>
> ## These both failed (in mpfr2str(.)) with a seg.fault:
> c(mpfr(1, prec=3), pi.)
2 'mpfr' numbers of precision 3 .. 260 bits
[1] 1
[2] 3.1415926535897932384626433832795028841971693993751058209749445923078164062862088
> m0 <- mpfr(numeric(), prec=64)
> ## print()ing / str() of 0-length mpfr
> stopifnot(
+ grepl("0 'mpfr' numbers", capture.output( m0)),
+ grepl("0 'mpfr' numbers", capture.output(str(m0))))
>
> c(m0,m0) # failed in Rmpfr <= 0.6-0
0 'mpfr' numbers
> stopifnot(identical(c(m0,m0), m0),
+ identical(c(m0,pi.), pi.),
+ identical(c(pi.,m0), pi.))
>
> ## This is TRUE for 0 and -0 :
> Zero <- mpfr(c(0,1/-Inf), 20)
> stopifnot(mpfrIs0(Zero), is.whole(Zero))
> stopifnot(mpfr.is.0(Zero))# deprecated but must work
Warning message:
In mpfr.is.0(Zero) :*** buffer overflow detected ***: terminated
Aborted
Flavor: r-devel-linux-x86_64-debian-gcc