1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
source("incl/start.R")
options(future.debug = FALSE)
message("*** RNG ...")
plan(batchtools_local)
message("- run() does not update RNG state")
f1 <- future(1, lazy = TRUE)
f2 <- future(2, lazy = TRUE)
rng0 <- globalenv()$.Random.seed
f1 <- run(f1)
stopifnot(identical(globalenv()$.Random.seed, rng0)) ## RNG changed?
f2 <- run(f2)
stopifnot(identical(globalenv()$.Random.seed, rng0)) ## RNG changed?
v1 <- value(f1)
stopifnot(identical(v1, 1))
v2 <- value(f2)
stopifnot(identical(v2, 2))
message("- future() does not update RNG state")
rng0 <- globalenv()$.Random.seed
f1 <- future(1)
stopifnot(identical(globalenv()$.Random.seed, rng0)) ## RNG changed?
f2 <- future(2)
stopifnot(identical(globalenv()$.Random.seed, rng0)) ## RNG changed?
v1 <- value(f1)
stopifnot(identical(v1, 1))
v2 <- value(f2)
stopifnot(identical(v2, 2))
message("- resolved() does not update RNG state")
f1 <- future(1)
f2 <- future(2)
rng0 <- globalenv()$.Random.seed
d1 <- resolved(f1)
stopifnot(identical(globalenv()$.Random.seed, rng0)) ## RNG changed?
d2 <- resolved(f2)
stopifnot(identical(globalenv()$.Random.seed, rng0)) ## RNG changed?
v1 <- value(f1)
stopifnot(identical(v1, 1))
v2 <- value(f2)
stopifnot(identical(v2, 2))
message("- result() does not update RNG state")
f1 <- future(1)
f2 <- future(2)
rng0 <- globalenv()$.Random.seed
r1 <- result(f1)
stopifnot(identical(r1$value, 1))
stopifnot(identical(globalenv()$.Random.seed, rng0)) ## RNG changed?
r2 <- result(f2)
stopifnot(identical(r2$value, 2))
stopifnot(identical(globalenv()$.Random.seed, rng0)) ## RNG changed?
v1 <- value(f1)
stopifnot(identical(v1, 1))
v2 <- value(f2)
stopifnot(identical(v2, 2))
message("- value() does not update RNG state")
f1 <- future(1)
f2 <- future(2)
rng0 <- globalenv()$.Random.seed
v1 <- value(f1)
stopifnot(identical(v1, 1))
stopifnot(identical(globalenv()$.Random.seed, rng0)) ## RNG changed?
v2 <- value(f2)
stopifnot(identical(v2, 2))
stopifnot(identical(globalenv()$.Random.seed, rng0)) ## RNG changed?
message("*** RNG ... DONE")
source("incl/end.R")
|