options(digits=12) if(!require("BB"))stop("this test requires package BB.") if(!require("setRNG"))stop("this test requires setRNG.") # Use a preset seed so test values are reproducable. test.rng <- list(kind="Wichmann-Hill", normal.kind="Box-Muller", seed=c(979,1479,1542)) old.seed <- setRNG(test.rng) ########## cat("BB test sane ...\n") expo1 <- function(x) { n <- length(x) f <- rep(NA, n) f[1] <- exp(x[1] - 1) - 1 f[2:n] <- (2:n) * (exp(x[2:n] - 1) - x[2:n]) f } ans <- sane(par=runif(100), fn=expo1) z <- sum(ans$par) good <- 100.00 #100.0035727552039 #on Windows 100.0004769108742 #on Linux64 100.0035727552039 pre 2008.11-1 #on Linux64 99.9934719173656 2008.11-1 #on Linux32 100.0002196399214 print(z, digits=16) if(any(abs(good - z) > 1e-2)) stop("BB test sane FAILED")