R Under development (unstable) (2024-10-26 r87273 ucrt) -- "Unsuffered Consequences" Copyright (C) 2024 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. > source("incl/start.R") Loading required package: future [18:40:56.012] plan(): Setting new future strategy stack: [18:40:56.014] List of future strategies: [18:40:56.014] 1. sequential: [18:40:56.014] - args: function (..., envir = parent.frame(), workers = "") [18:40:56.014] - tweaked: FALSE [18:40:56.014] - call: future::plan("sequential") [18:40:56.026] plan(): nbrOfWorkers() = 1 > > message("*** future_lapply() and RNGs ...") *** future_lapply() and RNGs ... > > options(future.debug = FALSE) > > message("* future_lapply(x, ..., future.seed = ) ...") * future_lapply(x, ..., future.seed = ) ... > > res <- tryCatch({ + y <- future_lapply(1:3, FUN = identity, future.seed = as.list(1:2)) + }, error = identity) > print(res) > stopifnot(inherits(res, "simpleError")) > > res <- tryCatch({ + y <- future_lapply(1:3, FUN = identity, future.seed = list(1, 2, 3:4)) + }, error = identity) > print(res) > stopifnot(inherits(res, "simpleError")) > > res <- tryCatch({ + y <- future_lapply(1:3, FUN = identity, future.seed = as.list(1:3)) + }, error = identity) > print(res) > stopifnot(inherits(res, "simpleError")) > > seeds <- lapply(1:3, FUN = as_lecyer_cmrg_seed) > res <- tryCatch({ + y <- future_lapply(1:3, FUN = identity, future.seed = lapply(seeds, FUN = as.numeric)) + }, error = identity) > print(res) > stopifnot(inherits(res, "simpleError")) > > seeds[[1]][1] <- seeds[[1]][1] + 1L > res <- tryCatch({ + y <- future_lapply(1:3, FUN = identity, future.seed = seeds) + }, error = identity) > print(res) > stopifnot(inherits(res, "simpleError")) > > message("* future_lapply(x, ..., future.seed = ) ... DONE") * future_lapply(x, ..., future.seed = ) ... DONE > > > ## Iterate of the same set in all tests > x <- 1:5 > > message("* future_lapply(x, ..., future.seed = FALSE) ...") * future_lapply(x, ..., future.seed = FALSE) ... > > y0 <- y0_nested <- seed00 <- NULL > for (cores in 1:availCores) { + message(sprintf(" - Testing with %d cores ...", cores)) + options(mc.cores = cores) + + for (strategy in supportedStrategies(cores)) { + message(sprintf("* plan('%s') ...", strategy)) + plan(strategy) + + set.seed(0xBEEF) + seed0 <- get_random_seed() + y <- future_lapply(x, FUN = function(i) i, future.seed = FALSE) + y <- unlist(y) + seed <- get_random_seed() + if (is.null(y0)) { + y0 <- y + seed00 <- seed + } + str(list(y = y)) + stopifnot(identical(seed, seed0), identical(seed, seed00)) + ## NOTE: We cannot guarantee the same random numbers, because + ## future.seed = FALSE. + + message(sprintf("* plan('%s') ... DONE", strategy)) + } ## for (strategy ...) + message(sprintf(" - Testing with %d cores ... DONE", cores)) + } ## for (core ...) - Testing with 1 cores ... * plan('sequential') ... List of 1 $ y: int [1:5] 1 2 3 4 5 * plan('sequential') ... DONE * plan('multisession') ... List of 1 $ y: int [1:5] 1 2 3 4 5 * plan('multisession') ... DONE - Testing with 1 cores ... DONE - Testing with 2 cores ... * plan('multisession') ... List of 1 $ y: int [1:5] 1 2 3 4 5 * plan('multisession') ... DONE - Testing with 2 cores ... DONE > > message("* future_lapply(x, ..., future.seed = FALSE) ... DONE") * future_lapply(x, ..., future.seed = FALSE) ... DONE > > > seed_sets <- list( + A = TRUE, + ## B = NA, + C = 42L, + D = as_lecyer_cmrg_seed(42L), + E = list(), + F = vector("list", length = length(x)), + G = NULL + ) > > ## Generate sequence of seeds of the current RNGkind() > ## NOTE: This is NOT a good way to generate random seeds!!! > seeds <- lapply(seq_along(x), FUN = function(i) { + set.seed(i) + globalenv()$.Random.seed + }) > seed_sets$E <- seeds > > ## Generate sequence of L'Ecyer CMRG seeds > seeds <- seed_sets$F > seeds[[1]] <- seed_sets$D > for (kk in 2:length(x)) seeds[[kk]] <- parallel::nextRNGStream(seeds[[kk - 1]]) > seed_sets$F <- seeds > seed_sets$G <- seed_sets$A > > rm(list = "seeds") > > for (name in names(seed_sets)) { + future.seed <- seed_sets[[name]] + + if (is.list(future.seed)) { + label <- sprintf("", + length(future.seed), length(future.seed[[1]])) + } else { + label <- hpaste(future.seed) + } + message(sprintf("* future_lapply(x, ..., future.seed = %s) ...", label)) + + set.seed(0xBEEF) + y0 <- seed00 <- NULL + + for (cores in 1:availCores) { + message(sprintf(" - Testing with %d cores ...", cores)) + options(mc.cores = cores) + + for (strategy in supportedStrategies(cores)) { + message(sprintf("* plan('%s') ...", strategy)) + plan(strategy) + + set.seed(0xBEEF) + seed0 <- get_random_seed() + y <- future_lapply(x, FUN = function(i) { + rnorm(1L) + }, future.seed = future.seed) + y <- unlist(y) + seed <- get_random_seed() + if (is.null(y0)) { + y0 <- y + seed00 <- seed + } + str(list(y = y)) + stopifnot(!identical(seed, seed0), identical(seed, seed00), + identical(y, y0)) + + ## RNG-based results should also be identical regardless of + ## load-balance scheduling. + for (scheduling in list(FALSE, TRUE, 0, 0.5, 2.0, Inf)) { + set.seed(0xBEEF) + seed0 <- get_random_seed() + y <- future_lapply(x, FUN = function(i) { + rnorm(1L) + }, future.seed = future.seed, future.scheduling = scheduling) + seed <- get_random_seed() + y <- unlist(y) + str(list(y = y)) + stopifnot(!identical(seed, seed0), identical(seed, seed00), + identical(y, y0)) + } + + ## Nested future_lapply():s + for (scheduling in list(FALSE, TRUE)) { + y <- future_lapply(x, FUN = function(i) { + .seed <- globalenv()$.Random.seed + + z <- future_lapply(1:3, FUN = function(j) { + list(j = j, seed = globalenv()$.Random.seed) + }, future.seed = .seed) + + ## Assert that all future seeds are unique + seeds <- lapply(z, FUN = function(x) x$seed) + for (kk in 2:length(seeds)) stopifnot(!all(seeds[[kk]] == seeds[[1]])) + + list(i = i, seed = .seed, sample = rnorm(1L), z = z) + }, future.seed = 42L, future.scheduling = scheduling) + + if (is.null(y0_nested)) y0_nested <- y + str(list(y = y)) + + ## Assert that all future seeds (also nested ones) are unique + seeds <- Reduce(c, lapply(y, FUN = function(x) { + c(list(seed = x$seed), lapply(x$z, FUN = function(x) x$seed)) + })) + for (kk in 2:length(seeds)) stopifnot(!all(seeds[[kk]] == seeds[[1]])) + + stopifnot(identical(y, y0_nested)) + } + + message(sprintf("* plan('%s') ... DONE", strategy)) + } ## for (strategy ...) + message(sprintf(" - Testing with %d cores ... DONE", cores)) + } ## for (cores ...) + + message(sprintf("* future_lapply(x, ..., future.seed = %s) ... DONE", label)) + + } ## for (name ...) * future_lapply(x, ..., future.seed = TRUE) ... - Testing with 1 cores ... * plan('sequential') ... List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 * plan('sequential') ... DONE * plan('multisession') ... List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 * plan('multisession') ... DONE - Testing with 1 cores ... DONE - Testing with 2 cores ... * plan('multisession') ... List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 * plan('multisession') ... DONE - Testing with 2 cores ... DONE * future_lapply(x, ..., future.seed = TRUE) ... DONE * future_lapply(x, ..., future.seed = 42) ... - Testing with 1 cores ... * plan('sequential') ... List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 * plan('sequential') ... DONE * plan('multisession') ... List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 * plan('multisession') ... DONE - Testing with 1 cores ... DONE - Testing with 2 cores ... * plan('multisession') ... List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 * plan('multisession') ... DONE - Testing with 2 cores ... DONE * future_lapply(x, ..., future.seed = 42) ... DONE * future_lapply(x, ..., future.seed = 10407, -2133391687, 507561766, 1260545903, 1362917092, -1772566379, -1344458670) ... - Testing with 1 cores ... * plan('sequential') ... List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 * plan('sequential') ... DONE * plan('multisession') ... List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 * plan('multisession') ... DONE - Testing with 1 cores ... DONE - Testing with 2 cores ... * plan('multisession') ... List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y: num [1:5] -0.0265 2.5456 -2.1074 0.5898 0.4167 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 * plan('multisession') ... DONE - Testing with 2 cores ... DONE * future_lapply(x, ..., future.seed = 10407, -2133391687, 507561766, 1260545903, 1362917092, -1772566379, -1344458670) ... DONE * future_lapply(x, ..., future.seed = ) ... - Testing with 1 cores ... * plan('sequential') ... List of 1 $ y: num [1:5] 0.461 -1.243 -0.297 1.18 -0.385 List of 1 $ y: num [1:5] 0.461 -1.243 -0.297 1.18 -0.385 List of 1 $ y: num [1:5] 0.461 -1.243 -0.297 1.18 -0.385 List of 1 $ y: num [1:5] 0.461 -1.243 -0.297 1.18 -0.385 List of 1 $ y: num [1:5] 0.461 -1.243 -0.297 1.18 -0.385 List of 1 $ y: num [1:5] 0.461 -1.243 -0.297 1.18 -0.385 List of 1 $ y: num [1:5] 0.461 -1.243 -0.297 1.18 -0.385 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 * plan('sequential') ... DONE * plan('multisession') ... List of 1 $ y: num [1:5] 0.461 -1.243 -0.297 1.18 -0.385 List of 1 $ y: num [1:5] 0.461 -1.243 -0.297 1.18 -0.385 List of 1 $ y: num [1:5] 0.461 -1.243 -0.297 1.18 -0.385 List of 1 $ y: num [1:5] 0.461 -1.243 -0.297 1.18 -0.385 List of 1 $ y: num [1:5] 0.461 -1.243 -0.297 1.18 -0.385 List of 1 $ y: num [1:5] 0.461 -1.243 -0.297 1.18 -0.385 List of 1 $ y: num [1:5] 0.461 -1.243 -0.297 1.18 -0.385 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 * plan('multisession') ... DONE - Testing with 1 cores ... DONE - Testing with 2 cores ... * plan('multisession') ... List of 1 $ y: num [1:5] 0.461 -1.243 -0.297 1.18 -0.385 List of 1 $ y: num [1:5] 0.461 -1.243 -0.297 1.18 -0.385 List of 1 $ y: num [1:5] 0.461 -1.243 -0.297 1.18 -0.385 List of 1 $ y: num [1:5] 0.461 -1.243 -0.297 1.18 -0.385 List of 1 $ y: num [1:5] 0.461 -1.243 -0.297 1.18 -0.385 List of 1 $ y: num [1:5] 0.461 -1.243 -0.297 1.18 -0.385 List of 1 $ y: num [1:5] 0.461 -1.243 -0.297 1.18 -0.385 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 * plan('multisession') ... DONE - Testing with 2 cores ... DONE * future_lapply(x, ..., future.seed = ) ... DONE * future_lapply(x, ..., future.seed = ) ... - Testing with 1 cores ... * plan('sequential') ... List of 1 $ y: num [1:5] -0.9391 1.1193 -0.2085 0.0011 0.2263 List of 1 $ y: num [1:5] -0.9391 1.1193 -0.2085 0.0011 0.2263 List of 1 $ y: num [1:5] -0.9391 1.1193 -0.2085 0.0011 0.2263 List of 1 $ y: num [1:5] -0.9391 1.1193 -0.2085 0.0011 0.2263 List of 1 $ y: num [1:5] -0.9391 1.1193 -0.2085 0.0011 0.2263 List of 1 $ y: num [1:5] -0.9391 1.1193 -0.2085 0.0011 0.2263 List of 1 $ y: num [1:5] -0.9391 1.1193 -0.2085 0.0011 0.2263 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 * plan('sequential') ... DONE * plan('multisession') ... List of 1 $ y: num [1:5] -0.9391 1.1193 -0.2085 0.0011 0.2263 List of 1 $ y: num [1:5] -0.9391 1.1193 -0.2085 0.0011 0.2263 List of 1 $ y: num [1:5] -0.9391 1.1193 -0.2085 0.0011 0.2263 List of 1 $ y: num [1:5] -0.9391 1.1193 -0.2085 0.0011 0.2263 List of 1 $ y: num [1:5] -0.9391 1.1193 -0.2085 0.0011 0.2263 List of 1 $ y: num [1:5] -0.9391 1.1193 -0.2085 0.0011 0.2263 List of 1 $ y: num [1:5] -0.9391 1.1193 -0.2085 0.0011 0.2263 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 * plan('multisession') ... DONE - Testing with 1 cores ... DONE - Testing with 2 cores ... * plan('multisession') ... List of 1 $ y: num [1:5] -0.9391 1.1193 -0.2085 0.0011 0.2263 List of 1 $ y: num [1:5] -0.9391 1.1193 -0.2085 0.0011 0.2263 List of 1 $ y: num [1:5] -0.9391 1.1193 -0.2085 0.0011 0.2263 List of 1 $ y: num [1:5] -0.9391 1.1193 -0.2085 0.0011 0.2263 List of 1 $ y: num [1:5] -0.9391 1.1193 -0.2085 0.0011 0.2263 List of 1 $ y: num [1:5] -0.9391 1.1193 -0.2085 0.0011 0.2263 List of 1 $ y: num [1:5] -0.9391 1.1193 -0.2085 0.0011 0.2263 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 * plan('multisession') ... DONE - Testing with 2 cores ... DONE * future_lapply(x, ..., future.seed = ) ... DONE * future_lapply(x, ..., future.seed = TRUE) ... - Testing with 1 cores ... * plan('sequential') ... List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 * plan('sequential') ... DONE * plan('multisession') ... List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 * plan('multisession') ... DONE - Testing with 1 cores ... DONE - Testing with 2 cores ... * plan('multisession') ... List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y: num [1:5] 0.682 1.19 -1.081 1.143 -1.293 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 List of 1 $ y:List of 5 ..$ :List of 4 .. ..$ i : int 1 .. ..$ seed : int [1:7] 10407 -1871565002 1968597656 -505666782 1055078269 658163990 1090264187 .. ..$ sample: num -1.73 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -122323274 442418215 -314150398 -1994370242 -1572376734 -1226578877 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 ..$ :List of 4 .. ..$ i : int 2 .. ..$ seed : int [1:7] 10407 -503482957 -863217979 -980579484 -1807161053 -1917089476 -126101442 .. ..$ sample: num -0.613 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1871254577 -825239395 875794779 -247498306 438043846 1608281042 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 ..$ :List of 4 .. ..$ i : int 3 .. ..$ seed : int [1:7] 10407 -1416887823 -1951372948 -290339832 1953140740 518544831 1295962379 .. ..$ sample: num -1.3 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 997135606 1479245243 -2016452053 1100999787 -104552021 2044111928 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 ..$ :List of 4 .. ..$ i : int 4 .. ..$ seed : int [1:7] 10407 -1895924057 1338330203 1337745945 -1864062382 -246625186 85998543 .. ..$ sample: num 1.62 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 -1269057340 -1399655485 1519579598 -1180765060 1521246727 -1017612807 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 ..$ :List of 4 .. ..$ i : int 5 .. ..$ seed : int [1:7] 10407 159795861 -1341632454 -672147384 -2118510370 -486654842 1639834115 .. ..$ sample: num 0.684 .. ..$ z :List of 3 .. .. ..$ :List of 2 .. .. .. ..$ j : int 1 .. .. .. ..$ seed: int [1:7] 10407 1613341724 1511905231 -48934370 201757509 -191270057 -252590183 .. .. ..$ :List of 2 .. .. .. ..$ j : int 2 .. .. .. ..$ seed: int [1:7] 10407 1846266912 1321142837 2076962100 -1723920069 -1063347708 542913105 .. .. ..$ :List of 2 .. .. .. ..$ j : int 3 .. .. .. ..$ seed: int [1:7] 10407 1128582173 1654094174 -1602611927 417070242 159418060 622348586 * plan('multisession') ... DONE - Testing with 2 cores ... DONE * future_lapply(x, ..., future.seed = TRUE) ... DONE > > > message("*** future_lapply() and RNGs ... DONE") *** future_lapply() and RNGs ... DONE > > source("incl/end.R") > > proc.time() user system elapsed 8.35 0.39 15.54