Last updated on 2015-12-29 00:46:43.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-gcc | 1.9-10.1 | 4.16 | 23.97 | 28.14 | OK | |
r-devel-linux-x86_64-fedora-clang | 1.9-10.1 | 52.36 | OK | |||
r-devel-linux-x86_64-fedora-gcc | 1.9-10.1 | 50.68 | OK | |||
r-devel-osx-x86_64-clang | 1.9-10.1 | 65.43 | OK | |||
r-devel-windows-ix86+x86_64 | 1.9-10.1 | 42.00 | 72.00 | 114.00 | OK | |
r-patched-linux-x86_64 | 1.9-10.1 | 4.15 | 24.91 | 29.06 | OK | |
r-patched-solaris-sparc | 1.9-10.1 | 321.70 | ERROR | |||
r-patched-solaris-x86 | 1.9-10.1 | 62.70 | OK | |||
r-release-linux-x86_64 | 1.9-10.1 | 3.97 | 24.82 | 28.78 | OK | |
r-release-osx-x86_64-mavericks | 1.9-10.1 | OK | ||||
r-release-windows-ix86+x86_64 | 1.9-10.1 | 33.00 | 54.00 | 87.00 | OK | |
r-oldrel-windows-ix86+x86_64 | 1.9-10.1 | 38.00 | 74.00 | 112.00 | OK |
Version: 1.9-10.1
Check: examples
Result: ERROR
Running examples in ‘gsl-Ex.R’ failed
The error most likely occurred in:
> ### Name: multimin
> ### Title: Function minimization
> ### Aliases: Multimin multimin multimin.init multimin.iterate
> ### multimin.restart multimin.fminimizer.size
> ### Keywords: array
>
> ### ** Examples
>
> # The Rosenbrock function:
> x0 <- c(-1.2, 1)
> f <- function(x) (1 - x[1])^2 + 100 * (x[2] - x[1]^2)^2
> df <- function(x) c(-2*(1 - x[1]) + 100 * 2 * (x[2] - x[1]^2) * (-2*x[1]),
+ 100 * 2 * (x[2] - x[1]^2))
>
> # The simple way to call multimin.
> state <- multimin(x0, f, df)
> print(state$x)
[1] 0.999997 0.999994
>
> # The fine-control way to call multimin.
> state <- multimin.init(x0, f, df, method="conjugate-fr")
> for (i in 1:200)
+ state <- multimin.iterate(state)
*** caught segfault ***
address 20, cause 'memory not mapped'
aborting ...
Flavor: r-patched-solaris-sparc