search for: suppressundefin

Displaying 2 results from an estimated 2 matches for "suppressundefin".

Did you mean: suppressundefined
2011 Jun 28
1
doMC - compiler - concatenate an expression vector into a single expression?
...ctly with doMC 1.2.1, but with the introduction of the compiler functionality, things do not work properly. The change in the doMC package consists in evaluating a compiled expression instead of the original R expression: # from doMC:::doMC ... c.expr <- comp(expr, env = envir, options = list(suppressUndefined = TRUE)) and for R >= 2.13.0 comp is defined as compiler::compile: function (e, env = .GlobalEnv, options = NULL) { cenv <- makeCenv(env) cntxt <- make.toplevelContext(cenv, options) cntxt$env <- addCenvVars(cenv, findLocals(e, cntxt)) genCode(e, cntxt) } <envi...
2011 Jun 29
0
[R-sig-hpc] doMC - compiler - concatenate an expression vector into a single expression?
...>> the compiler functionality, things do not work properly. >> The change in the doMC package consists in evaluating a compiled >> expression instead of the original R expression: >> >> # from doMC:::doMC ... >> c.expr<- comp(expr, env = envir, options = list(suppressUndefined = TRUE)) >> >> and for R>= 2.13.0 comp is defined as compiler::compile: >> function (e, env = .GlobalEnv, options = NULL) >> { >> cenv<- makeCenv(env) >> cntxt<- make.toplevelContext(cenv, options) >> cntxt$env<- addCenvVars(cenv,...