R Under development (unstable) (2026-01-15 r89304 ucrt) -- "Unsuffered Consequences" Copyright (C) 2026 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > #! /usr/bin/env Rscript > ## This runs testme test script inst/testme/test-rng.R > ## Don't edit - it was autogenerated by inst/testme/deploy.R > future:::testme("rng") Test 'rng' ... chr "none" > options(future.debug = FALSE) > library(future) > library(listenv) > message("*** rng ...") *** rng ... > okind <- RNGkind() > f <- Future(42, seed = 42) > print(f) Future: Label: Expression: [1] 42 Globals: Packages: L'Ecuyer-CMRG RNG seed: c(10407, -94575036, -24861725, 357812871, 346211554, -1301022835, 440649733) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=0] State: 'created' ("Future was created, but is yet to be submitted") Resolved: FALSE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-1 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'Future', 'environment' Value: Conditions captured: > stopifnot(identical(RNGkind(), okind)) > seed <- c(407, 1420090545, 65713854, -990249945, 1780737596, + -1213437427, 1082168682) > f <- Future(42, seed = seed) > print(f) Future: Label: Expression: [1] 42 Globals: Packages: L'Ecuyer-CMRG RNG seed: c(407, 1420090545, 65713854, -990249945, 1780737596, -1213437427, 1082168682) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=0] State: 'created' ("Future was created, but is yet to be submitted") Resolved: FALSE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-2 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'Future', 'environment' Value: Conditions captured: > stopifnot(identical(RNGkind(), okind)) > f <- Future(42, seed = TRUE) > print(f) Future: Label: Expression: [1] 42 Globals: Packages: L'Ecuyer-CMRG RNG seed: c(10407, 1654142258, 1531672454, 1481853308, -1451283723, 1945422543, -256020886) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=0] State: 'created' ("Future was created, but is yet to be submitted") Resolved: FALSE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-3 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'Future', 'environment' Value: Conditions captured: > stopifnot(identical(RNGkind(), okind)) > f <- Future(42, seed = FALSE) > print(f) Future: Label: Expression: [1] 42 Globals: Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=0] State: 'created' ("Future was created, but is yet to be submitted") Resolved: FALSE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-4 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'Future', 'environment' Value: Conditions captured: > stopifnot(identical(RNGkind(), okind)) > f <- Future(42, seed = NULL) > print(f) Future: Label: Expression: [1] 42 Globals: Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=0] State: 'created' ("Future was created, but is yet to be submitted") Resolved: FALSE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-5 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'Future', 'environment' Value: Conditions captured: > stopifnot(identical(RNGkind(), okind)) > fsample <- function(x, size = 4, seed = NULL, what = c("future", + "%<-%")) { + what <- match.arg(what) + .GlobalEnv <- globalenv() + .... [TRUNCATED] > dummy <- sample(0:3, size = 1) > seed0 <- .Random.seed > stopifnot(identical(RNGkind(), okind)) > plan(sequential) > y0 <- fsample(0:3, seed = 42) > stopifnot(identical(.GlobalEnv$.Random.seed, seed0), + identical(RNGkind(), okind)) > for (cores in 1:availCores) { + message(sprintf("Testing with %d cores ...", cores)) + options(mc.cores = cores) + for (strategy in supp .... [TRUNCATED] Testing with 1 cores ... sequential ... [[1]] [1] 2 [[2]] [1] 0 [[3]] [1] 0 [[4]] [1] 1 [[1]] [1] 2 [[2]] [1] 0 [[3]] [1] 0 [[4]] [1] 1 SequentialFuture: Label: 'fsample_1-750193' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 12.00 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-18 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.004591942 secs (started 2026-01-16 12:35:36.827711) Worker process: 623f6607e46fb1ca7ea154cca428ed58 SequentialFuture: Label: 'fsample_2-890687' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 17.71 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-19 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.004626989 secs (started 2026-01-16 12:35:36.849986) Worker process: 623f6607e46fb1ca7ea154cca428ed58 SequentialFuture: Label: 'fsample_3-459447' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 23.43 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-20 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.004067183 secs (started 2026-01-16 12:35:36.871513) Worker process: 623f6607e46fb1ca7ea154cca428ed58 SequentialFuture: Label: 'fsample_4-196787' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 29.14 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-21 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.004190922 secs (started 2026-01-16 12:35:36.888708) Worker process: 623f6607e46fb1ca7ea154cca428ed58 [[1]] [1] 1 [[2]] [1] 3 [[3]] [1] 3 [[4]] [1] 2 SequentialFuture: Label: 'fsample_1-162862' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 9.99 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-22 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.004161119 secs (started 2026-01-16 12:35:36.908345) Worker process: 623f6607e46fb1ca7ea154cca428ed58 SequentialFuture: Label: 'fsample_2-348514' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 14.15 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-23 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.004004002 secs (started 2026-01-16 12:35:36.924954) Worker process: 623f6607e46fb1ca7ea154cca428ed58 SequentialFuture: Label: 'fsample_3-448853' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 18.30 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-24 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.004058123 secs (started 2026-01-16 12:35:36.941789) Worker process: 623f6607e46fb1ca7ea154cca428ed58 SequentialFuture: Label: 'fsample_4-725007' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 22.46 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-25 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.003968954 secs (started 2026-01-16 12:35:36.958578) Worker process: 623f6607e46fb1ca7ea154cca428ed58 [[1]] [1] 1 [[2]] [1] 2 [[3]] [1] 3 [[4]] [1] 1 SequentialFuture: Label: 'fsample_1-980984' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 12.00 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-26 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.006254196 secs (started 2026-01-16 12:35:36.977105) Worker process: 623f6607e46fb1ca7ea154cca428ed58 SequentialFuture: Label: 'fsample_2-470837' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 17.71 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-27 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.003795147 secs (started 2026-01-16 12:35:36.9954) Worker process: 623f6607e46fb1ca7ea154cca428ed58 SequentialFuture: Label: 'fsample_3-448594' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 23.43 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-28 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.003801823 secs (started 2026-01-16 12:35:37.011423) Worker process: 623f6607e46fb1ca7ea154cca428ed58 SequentialFuture: Label: 'fsample_4-33149' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 29.14 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-29 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.003886938 secs (started 2026-01-16 12:35:37.026956) Worker process: 623f6607e46fb1ca7ea154cca428ed58 ]> Occurred on: 623f6607e46fb1ca7ea154cca428ed58 [CRANWIN3; pid 61816] Future: 623f6607e46fb1ca7ea154cca428ed58-26 ('fsample_1-980984') DEBUG: BEGIN TROUBLESHOOTING HELP SequentialFuture: Label: 'fsample_1-980984' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 30.59 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-26 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Conditions captured: [n=1] 'RngFutureWarning' Duration: 0.006254196 secs (started 2026-01-16 12:35:36.977105) Worker process: 623f6607e46fb1ca7ea154cca428ed58 DEBUG: END TROUBLESHOOTING HELP SequentialFuture: Label: 'fsample_1-925717' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 9.99 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-30 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.004044056 secs (started 2026-01-16 12:35:37.046334) Worker process: 623f6607e46fb1ca7ea154cca428ed58 SequentialFuture: Label: 'fsample_2-594970' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 14.15 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-31 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.003973007 secs (started 2026-01-16 12:35:37.063318) Worker process: 623f6607e46fb1ca7ea154cca428ed58 SequentialFuture: Label: 'fsample_3-299737' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 18.30 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-32 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.004058838 secs (started 2026-01-16 12:35:37.079956) Worker process: 623f6607e46fb1ca7ea154cca428ed58 SequentialFuture: Label: 'fsample_4-200376' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 22.46 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-33 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.006604195 secs (started 2026-01-16 12:35:37.096562) Worker process: 623f6607e46fb1ca7ea154cca428ed58 [[1]] [1] 1 [[2]] [1] 0 [[3]] [1] 3 [[4]] [1] 1 SequentialFuture: Label: 'fsample_1-796659' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 12.00 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-34 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.004005909 secs (started 2026-01-16 12:35:37.117177) Worker process: 623f6607e46fb1ca7ea154cca428ed58 SequentialFuture: Label: 'fsample_2-158063' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 17.71 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-35 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.003890991 secs (started 2026-01-16 12:35:37.133527) Worker process: 623f6607e46fb1ca7ea154cca428ed58 SequentialFuture: Label: 'fsample_3-526854' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 23.43 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-36 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.003998041 secs (started 2026-01-16 12:35:37.149419) Worker process: 623f6607e46fb1ca7ea154cca428ed58 SequentialFuture: Label: 'fsample_4-817880' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 29.14 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-37 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.003993988 secs (started 2026-01-16 12:35:37.165763) Worker process: 623f6607e46fb1ca7ea154cca428ed58 ]> Occurred on: 623f6607e46fb1ca7ea154cca428ed58 [CRANWIN3; pid 61816] Future: 623f6607e46fb1ca7ea154cca428ed58-34 ('fsample_1-796659') DEBUG: BEGIN TROUBLESHOOTING HELP SequentialFuture: Label: 'fsample_1-796659' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 34.91 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=2] 'run', 'resolve' State: 'finished' ("Future was resolved, but produced a 'RngFutureError'") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-34 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Conditions captured: [n=1] 'RngFutureError' Duration: 0.004005909 secs (started 2026-01-16 12:35:37.117177) Worker process: 623f6607e46fb1ca7ea154cca428ed58 DEBUG: END TROUBLESHOOTING HELP SequentialFuture: Label: 'fsample_1-658299' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 9.99 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-38 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.004135847 secs (started 2026-01-16 12:35:37.187262) Worker process: 623f6607e46fb1ca7ea154cca428ed58 SequentialFuture: Label: 'fsample_2-943167' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 14.15 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-39 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.004095078 secs (started 2026-01-16 12:35:37.203585) Worker process: 623f6607e46fb1ca7ea154cca428ed58 SequentialFuture: Label: 'fsample_3-920901' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 18.30 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-40 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.003684998 secs (started 2026-01-16 12:35:37.223246) Worker process: 623f6607e46fb1ca7ea154cca428ed58 SequentialFuture: Label: 'fsample_4-163339' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 22.46 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-41 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Duration: 0.003686905 secs (started 2026-01-16 12:35:37.238306) Worker process: 623f6607e46fb1ca7ea154cca428ed58 [[1]] [1] 2 [[2]] [1] 2 [[3]] [1] 2 [[4]] [1] 3 [[1]] [1] 2 [[2]] [1] 0 [[3]] [1] 0 [[4]] [1] 1 [[1]] [1] 2 [[2]] [1] 0 [[3]] [1] 0 [[4]] [1] 1 [[1]] [1] 1 [[2]] [1] 3 [[3]] [1] 3 [[4]] [1] 2 [[1]] [1] 1 [[2]] [1] 2 [[3]] [1] 3 [[4]] [1] 1 ]> Occurred on: 623f6607e46fb1ca7ea154cca428ed58 [CRANWIN3; pid 61816] Future: 623f6607e46fb1ca7ea154cca428ed58-58 ('fsample_1-980984') DEBUG: BEGIN TROUBLESHOOTING HELP SequentialFuture: Label: 'fsample_1-980984' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 109.88 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-58 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Conditions captured: [n=1] 'RngFutureWarning' Duration: 0.006764889 secs (started 2026-01-16 12:35:37.584769) Worker process: 623f6607e46fb1ca7ea154cca428ed58 DEBUG: END TROUBLESHOOTING HELP [[1]] [1] 1 [[2]] [1] 0 [[3]] [1] 3 [[4]] [1] 1 ]> Occurred on: 623f6607e46fb1ca7ea154cca428ed58 [CRANWIN3; pid 61816] Future: 623f6607e46fb1ca7ea154cca428ed58-66 ('fsample_1-796659') DEBUG: BEGIN TROUBLESHOOTING HELP SequentialFuture: Label: 'fsample_1-796659' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 109.88 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved, but produced a 'RngFutureError'") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-66 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'SequentialFuture', 'UniprocessFuture', 'Future' Value: 35 bytes of class 'integer' Conditions captured: [n=1] 'RngFutureError' Duration: 0.004728079 secs (started 2026-01-16 12:35:37.792765) Worker process: 623f6607e46fb1ca7ea154cca428ed58 DEBUG: END TROUBLESHOOTING HELP [[1]] [1] 2 [[2]] [1] 2 [[3]] [1] 2 [[4]] [1] 3 sequential ... done Testing with 1 cores ... DONE Testing with 2 cores ... multisession ... [[1]] [1] 2 [[2]] [1] 0 [[3]] [1] 0 [[4]] [1] 1 [[1]] [1] 2 [[2]] [1] 0 [[3]] [1] 0 [[4]] [1] 1 MultisessionFuture: Label: 'fsample_1-750193' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 514.40 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-82 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: MultisessionFuture: Label: 'fsample_2-890687' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 522.71 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-83 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: MultisessionFuture: Label: 'fsample_3-459447' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 530.97 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-84 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: MultisessionFuture: Label: 'fsample_4-196787' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 539.23 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-85 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: [[1]] [1] 1 [[2]] [1] 0 [[3]] [1] 0 [[4]] [1] 1 MultisessionFuture: Label: 'fsample_1-162862' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 512.55 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-86 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: MultisessionFuture: Label: 'fsample_2-348514' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 519.30 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-87 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: MultisessionFuture: Label: 'fsample_3-448853' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 526.00 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-88 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: MultisessionFuture: Label: 'fsample_4-725007' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 532.71 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-89 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: [[1]] [1] 3 [[2]] [1] 1 [[3]] [1] 1 [[4]] [1] 1 MultisessionFuture: Label: 'fsample_1-980984' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 514.40 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-90 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: MultisessionFuture: Label: 'fsample_2-470837' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 522.71 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-91 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: MultisessionFuture: Label: 'fsample_3-448594' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 530.97 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-92 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: MultisessionFuture: Label: 'fsample_4-33149' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 539.23 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-93 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: ]> Occurred on: 623f6607e46fb1ca7ea154cca428ed58 [CRANWIN3; pid 61816] Future: 623f6607e46fb1ca7ea154cca428ed58-90 ('fsample_1-980984') DEBUG: BEGIN TROUBLESHOOTING HELP MultisessionFuture: Label: 'fsample_1-980984' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 544.72 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-90 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: 35 bytes of class 'integer' Conditions captured: [n=1] 'RngFutureWarning' Duration: 0.008047819 secs (started 2026-01-16 12:35:39.908487) Worker process: 0458873eb40dd283761d0d0afa92ee5d DEBUG: END TROUBLESHOOTING HELP MultisessionFuture: Label: 'fsample_1-925717' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 512.55 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-94 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: MultisessionFuture: Label: 'fsample_2-594970' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 519.30 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-95 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: MultisessionFuture: Label: 'fsample_3-299737' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 526.00 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-96 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: MultisessionFuture: Label: 'fsample_4-200376' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 532.71 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-97 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: [[1]] [1] 2 [[2]] [1] 1 [[3]] [1] 1 [[4]] [1] 2 MultisessionFuture: Label: 'fsample_1-796659' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 514.40 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-98 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: MultisessionFuture: Label: 'fsample_2-158063' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 522.71 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-99 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: MultisessionFuture: Label: 'fsample_3-526854' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 530.97 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-100 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: MultisessionFuture: Label: 'fsample_4-817880' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 539.24 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-101 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: ]> Occurred on: 623f6607e46fb1ca7ea154cca428ed58 [CRANWIN3; pid 61816] Future: 623f6607e46fb1ca7ea154cca428ed58-98 ('fsample_1-796659') DEBUG: BEGIN TROUBLESHOOTING HELP MultisessionFuture: Label: 'fsample_1-796659' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 549.04 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=2] 'run', 'resolve' State: 'finished' ("Future was resolved, but produced a 'RngFutureError'") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-98 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: 35 bytes of class 'integer' Conditions captured: [n=1] 'RngFutureError' Duration: 0.005521059 secs (started 2026-01-16 12:35:40.355162) Worker process: 0458873eb40dd283761d0d0afa92ee5d DEBUG: END TROUBLESHOOTING HELP MultisessionFuture: Label: 'fsample_1-658299' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 512.55 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-102 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: MultisessionFuture: Label: 'fsample_2-943167' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 519.30 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-103 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: MultisessionFuture: Label: 'fsample_3-920901' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 526.01 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-104 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: MultisessionFuture: Label: 'fsample_4-163339' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 532.71 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = NULL) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'running' ("Future is being evaluated") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-105 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: Conditions captured: [[1]] [1] 3 [[2]] [1] 3 [[3]] [1] 1 [[4]] [1] 2 [[1]] [1] 2 [[2]] [1] 0 [[3]] [1] 0 [[4]] [1] 1 [[1]] [1] 2 [[2]] [1] 0 [[3]] [1] 0 [[4]] [1] 1 [[1]] [1] 0 [[2]] [1] 2 [[3]] [1] 0 [[4]] [1] 3 [[1]] [1] 3 [[2]] [1] 2 [[3]] [1] 0 [[4]] [1] 2 ]> Occurred on: 623f6607e46fb1ca7ea154cca428ed58 [CRANWIN3; pid 61816] Future: 623f6607e46fb1ca7ea154cca428ed58-122 ('fsample_1-980984') DEBUG: BEGIN TROUBLESHOOTING HELP MultisessionFuture: Label: 'fsample_1-980984' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 617.01 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved successfully") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-122 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: 35 bytes of class 'integer' Conditions captured: [n=1] 'RngFutureWarning' Duration: 0.005623102 secs (started 2026-01-16 12:35:41.566455) Worker process: 0458873eb40dd283761d0d0afa92ee5d DEBUG: END TROUBLESHOOTING HELP [[1]] [1] 2 [[2]] [1] 0 [[3]] [1] 1 [[4]] [1] 3 ]> Occurred on: 623f6607e46fb1ca7ea154cca428ed58 [CRANWIN3; pid 61816] Future: 623f6607e46fb1ca7ea154cca428ed58-130 ('fsample_1-796659') DEBUG: BEGIN TROUBLESHOOTING HELP MultisessionFuture: Label: 'fsample_1-796659' Expression: { sample(x, size = 1L) } Globals: 1 objects totaling 617.00 KiB (integer 'x' of 133 bytes) Packages: L'Ecuyer-CMRG RNG seed: (seed = FALSE) Capture standard output: TRUE Capture condition classes: 'condition' (excluding '') Immediate condition classes: 'immediateCondition' Lazy evaluation: FALSE Local evaluation: TRUE Early signaling: FALSE Actions: [n=1] 'run' State: 'finished' ("Future was resolved, but produced a 'RngFutureError'") Resolved: TRUE Unique identifier: 623f6607e46fb1ca7ea154cca428ed58-130 Owner process: 623f6607e46fb1ca7ea154cca428ed58 Class: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' Value: 35 bytes of class 'integer' Conditions captured: [n=1] 'RngFutureError' Duration: 0.004452944 secs (started 2026-01-16 12:35:41.976301) Worker process: 0458873eb40dd283761d0d0afa92ee5d DEBUG: END TROUBLESHOOTING HELP [[1]] [1] 0 [[2]] [1] 1 [[3]] [1] 3 [[4]] [1] 3 multisession ... done Testing with 2 cores ... DONE > message("- Assert that RNG mistakes does not muffle run-time errors") - Assert that RNG mistakes does not muffle run-time errors > options(future.debug = FALSE, future.rng.onMisuse = "warning") > for (signal in c(TRUE, FALSE)) { + message("signal=", signal) + f <- future({ + sample.int(2) + log("a") + }, seed = FAL .... [TRUNCATED] signal=TRUE FutureResult: value: 'NULL' visible: TRUE stdout: character conditions: [n = 1] simpleError RNG used: TRUE duration: 0.007380962 secs (started 2026-01-16 12:35:42.354146) version: 1.8 Warning: UNRELIABLE VALUE: Future () unexpectedly generated random numbers without specifying argument 'seed'. There is a risk that those random numbers are not statistically sound and the overall results might be invalid. To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random numbers are produced. To disable this check, use 'seed=NULL', or set option 'future.rng.onMisuse' to "ignore". [future (623f6607e46fb1ca7ea154cca428ed58-138); on 623f6607e46fb1ca7ea154cca428ed58@CRANWIN3<61816>] signal=FALSE FutureResult: value: 'NULL' visible: TRUE stdout: character conditions: [n = 1] simpleError RNG used: TRUE duration: 0.007281065 secs (started 2026-01-16 12:35:42.382015) version: 1.8 > stopifnot(identical(RNGkind(), okind)) > message("*** rng ... DONE") *** rng ... DONE Failed to undo environment variables: - Expected environment variables: [n=217] '!ExitCode', 'ALLUSERSPROFILE', 'APPDATA', 'BIBINPUTS', 'BINDIR', 'BSTINPUTS', 'COMMONPROGRAMFILES', 'COMPUTERNAME', 'COMSPEC', 'CURL_CA_BUNDLE', 'CV_Instance001', 'CYGWIN', 'CommonProgramFiles(x86)', 'CommonProgramW6432', 'DriverData', 'HOME', 'HOMEDRIVE', 'HOMEPATH', 'JAGS_ROOT', 'JAVA_HOME', 'LANGUAGE', 'LC_COLLATE', 'LC_MONETARY', 'LC_TIME', 'LOCALAPPDATA', 'LOGONSERVER', 'LS_HOME', 'LS_LICENSE_PATH', 'MAKE', 'MAKEFLAGS', 'MAKELEVEL', 'MFLAGS', 'MSMPI_BENCHMARKS', 'MSMPI_BIN', 'MSYS2_ENV_CONV_EXCL', 'NUMBER_OF_PROCESSORS', 'OCL', 'OMP_THREAD_LIMIT', 'OS', 'PATH', 'PATHEXT', 'PROCESSOR_ARCHITECTURE', 'PROCESSOR_IDENTIFIER', 'PROCESSOR_LEVEL', 'PROCESSOR_REVISION', 'PROGRAMFILES', 'PROMPT', 'PSModulePath', 'PUBLIC', 'PWD', 'ProgramData', 'ProgramFiles(x86)', 'ProgramW6432', 'RTOOLS44_HOME', 'RTOOLS45_HOME', 'R_ARCH', 'R_BROWSER', 'R_BZIPCMD', 'R_CMD', 'R_COMPILED_BY', 'R_CRAN_WEB', 'R_CUSTOM_TOOLS_PATH', 'R_CUSTOM_TOOLS_SOFT', 'R_DOC_DIR', 'R_ENVIRON_USER', 'R_GSCMD', 'R_GZIPCMD', 'R_HOME', 'R_INCLUDE_DIR', 'R_INSTALL_TAR', 'R_LIBS', 'R_LIBS_SITE', 'R_LIBS_USER', 'R_MAX_NUM_DLLS', 'R_OSTYPE', 'R_PAPERSIZE', 'R_PAPERSIZE_USER', 'R_PARALLELLY_MAKENODEPSOCK_AUTOKILL', 'R_PARALLELLY_MAKENODEPSOCK_CONNECTTIMEOUT', 'R_PARALLELLY_MAKENODEPSOCK_RSCRIPT_LABEL', 'R_PARALLELLY_MAKENODEPSOCK_SESSIONINFO_PKGS', 'R_PARALLELLY_MAKENODEPSOCK_TIMEOUT', 'R_PARALLELLY_RANDOM_PORTS', 'R_PARALLEL_PORT', 'R_RD4PDF', 'R_RTOOLS45_PATH', 'R_SCRIPT_LEGACY', 'R_SHARE_DIR', 'R_TESTME_NAME', 'R_TESTME_PACKAGE', 'R_TESTME_PATH', 'R_TESTS', 'R_UNZIPCMD', 'R_USER', 'R_VERSION', 'R_ZIPCMD', 'SED', 'SHLVL', 'SYSTEMDRIVE', 'SYSTEMROOT', 'TAR', 'TAR_OPTIONS', 'TEMP', 'TERM', 'TETRAD_DIR', 'TEXINPUTS', 'TMP', 'TMPDIR', 'USERDOMAIN', 'USERDOMAIN_ROAMINGPROFILE', 'USERNAME', 'USERPROFILE', 'WINDIR', '_', '_R_CHECK_AUTOCONF_', '_R_CHECK_BOGUS_RETURN_', '_R_CHECK_BROWSER_NONINTERACTIVE_', '_R_CHECK_BUILD_VIGNETTES_SEPARATELY_', '_R_CHECK_CODETOOLS_PROFILE_', '_R_CHECK_CODE_ASSIGN_TO_GLOBALENV_', '_R_CHECK_CODE_ATTACH_', '_R_CHECK_CODE_CLASS_IS_STRING_', '_R_CHECK_CODE_DATA_INTO_GLOBALENV_', '_R_CHECK_CODE_USAGE_VIA_NAMESPACES_', '_R_CHECK_CODE_USAGE_WITHOUT_LOADING_', '_R_CHECK_CODE_USAGE_WITH_ONLY_BASE_ATTACHED_', '_R_CHECK_CODOC_VARIABLES_IN_USAGES_', '_R_CHECK_COMPACT_DATA2_', '_R_CHECK_COMPILATION_FLAGS_', '_R_CHECK_CONNECTIONS_LEFT_OPEN_', '_R_CHECK_CRAN_INCOMING_', '_R_CHECK_CRAN_INCOMING_ASPELL_RECHECK_MAYBE_', '_R_CHECK_CRAN_INCOMING_ASPELL_RECHECK_START_', '_R_CHECK_CRAN_INCOMING_CHECK_FILE_URIS_', '_R_CHECK_CRAN_INCOMING_CHECK_URLS_IN_PARALLEL_', '_R_CHECK_CRAN_INCOMING_NOTE_GNU_MAKE_', '_R_CHECK_CRAN_INCOMING_REMOTE_', '_R_CHECK_CRAN_INCOMING_USE_ASPELL_', '_R_CHECK_DATALIST_', '_R_CHECK_DEPRECATED_DEFUNCT_', '_R_CHECK_DOC_SIZES2_', '_R_CHECK_DOT_FIRSTLIB_', '_R_CHECK_DOT_INTERNAL_', '_R_CHECK_EXAMPLE_TIMING_THRESHOLD_', '_R_CHECK_EXECUTABLES_', '_R_CHECK_EXECUTABLES_EXCLUSIONS_', '_R_CHECK_FF_CALLS_', '_R_CHECK_FF_DUP_', '_R_CHECK_FORCE_SUGGESTS_', '_R_CHECK_FUTURE_FILE_TIMESTAMPS_', '_R_CHECK_FUTURE_FILE_TIMESTAMPS_LEEWAY_', '_R_CHECK_HAVE_MYSQL_', '_R_CHECK_HAVE_ODBC_', '_R_CHECK_HAVE_PERL_', '_R_CHECK_HAVE_POSTGRES_', '_R_CHECK_INSTALL_DEPENDS_', '_R_CHECK_INTERNALS2_', '_R_CHECK_LENGTH_1_CONDITION_', '_R_CHECK_LICENSE_', '_R_CHECK_LIMIT_CORES_', '_R_CHECK_LOG_USE_INFO_', '_R_CHECK_MATRIX_DATA_', '_R_CHECK_MBCS_CONVERSION_FAILURE_', '_R_CHECK_NATIVE_ROUTINE_REGISTRATION_', '_R_CHECK_NEWS_IN_PLAIN_TEXT_', '_R_CHECK_NO_RECOMMENDED_', '_R_CHECK_NO_STOP_ON_TEST_ERROR_', '_R_CHECK_ORPHANED_', '_R_CHECK_OVERWRITE_REGISTERED_S3_METHODS_', '_R_CHECK_PACKAGES_USED_IGNORE_UNUSED_IMPORTS_', '_R_CHECK_PACKAGES_USED_IN_TESTS_USE_SUBDIRS_', '_R_CHECK_PACKAGE_DATASETS_SUPPRESS_NOTES_', '_R_CHECK_PACKAGE_NAME_', '_R_CHECK_PKG_SIZES_', '_R_CHECK_PKG_SIZES_THRESHOLD_', '_R_CHECK_PRAGMAS_', '_R_CHECK_RD_BIBENTRIES_CITED_NOT_SHOWN_', '_R_CHECK_RD_EXAMPLES_T_AND_F_', '_R_CHECK_RD_LINE_WIDTHS_', '_R_CHECK_RD_MATH_RENDERING_', '_R_CHECK_RD_NOTE_LOST_BRACES_', '_R_CHECK_RD_VALIDATE_RD2HTML_', '_R_CHECK_REPLACING_IMPORTS_', '_R_CHECK_R_DEPENDS_', '_R_CHECK_S3_METHODS_SHOW_POSSIBLE_ISSUES_', '_R_CHECK_SCREEN_DEVICE_', '_R_CHECK_SERIALIZATION_', '_R_CHECK_SHLIB_OPENMP_FLAGS_', '_R_CHECK_SRC_MINUS_W_IMPLICIT_', '_R_CHECK_SUBDIRS_NOCASE_', '_R_CHECK_SUGGESTS_ONLY_', '_R_CHECK_SYSTEM_CLOCK_', '_R_CHECK_TESTS_NLINES_', '_R_CHECK_TEST_TIMING_', '_R_CHECK_TIMINGS_', '_R_CHECK_TOPLEVEL_FILES_', '_R_CHECK_UNDOC_USE_ALL_NAMES_', '_R_CHECK_UNSAFE_CALLS_', '_R_CHECK_URLS_RELATIVE_PATHS_', '_R_CHECK_URLS_SHOW_301_STATUS_', '_R_CHECK_VC_DIRS_', '_R_CHECK_VIGNETTES_NLINES_', '_R_CHECK_VIGNETTES_SKIP_RUN_MAYBE_', '_R_CHECK_VIGNETTE_TIMING_', '_R_CHECK_VIGNETTE_TITLES_', '_R_CHECK_WINDOWS_DEVICE_', '_R_CHECK_XREFS_NOTE_MISSING_PACKAGE_ANCHORS_', '_R_CHECK_XREFS_USE_ALIASES_FROM_CRAN_', '_R_CLASS_MATRIX_ARRAY_', '_R_DEPRECATED_IS_R_', '_R_S3_METHOD_LOOKUP_BASEENV_AFTER_GLOBALENV_', '_R_SHLIB_BUILD_OBJECTS_SYMBOL_TABLES_', '_R_USE_STRICT_R_HEADERS_', '__R_CHECK_DOC_FILES_NOTE_IF_ALL_INTERNAL__', 'maj.version', 'nextArg--timingsnextArg--install', 'tempdirname' - Environment variables still there: [n=0] - Environment variables missing: [n=1] 'MAKEFLAGS' Differences environment variable by environment variable: Skipping, because path appears not to be an 'R CMD check' folder: 'D:/temp/2026_01_16_12_30_17_22682' Test time: user.self=4s, sys.self=0.2s, elapsed=6s, user.child=NAs, sys.child=NAs Test 'rng' ... success > > proc.time() user system elapsed 4.67 0.40 6.73