Skip to content
Snippets Groups Projects
Commit 694383a6 authored by Adam Welc's avatar Adam Welc
Browse files

Commented out (seemingly) no longer required (and actually silent error...

Commented out (seemingly) no longer required (and actually silent error triggering) override functions evaluations.
parent 68e6ab3e
Branches
No related tags found
No related merge requests found
......@@ -79,7 +79,8 @@ makeForkCluster <- function(nnodes = getOption("mc.cores", 2L), options = defaul
cl
}; environment(makeForkCluster)<-asNamespace("parallel")})
eval(makeForkClusterExpr, asNamespace("parallel"))
eval(makeForkClusterExpr, as.environment("package:parallel"))
# seems like we don't need these anymore, but let's make sure
#eval(makeForkClusterExpr, as.environment("package:parallel"))
eval(expression(
......
......@@ -88,4 +88,5 @@ mclapply <- function(X, FUN, ..., mc.preschedule = TRUE, mc.set.seed = TRUE,
res
}; environment(mclapply)<-asNamespace("parallel")})
eval(mclapplyExpr, asNamespace("parallel"))
eval(mclapplyExpr, as.environment("package:parallel"))
# seems like we don't need these anymore, but let's make sure
#eval(mclapplyExpr, as.environment("package:parallel"))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment