Skip to content
Prev 7369 / 15075 Next

lme4 + R 2.11.0 + mac unavailable

On Sat, Jul 31, 2010 at 13:24, Prof Brian Ripley <ripley at stats.ox.ac.uk> wrote:
Thank you very much, Brian, for your experiments and concluding thoughts.
At the moment (since about yesterday), the R-forge version of lme4 has a test

  if(Sys.info()[["sysname"]] != "Darwin")

before two of the stopifnot(identical(..), identical(..))  checks.
Now if I understood correctly, I could constrain the if(..) close even
further by
requiring both "Darwin" and "i386"  for "not checking".
So, I'd use

    Sys.info()[c("sysname","machine")] == c("Darwin", "i386")

or would you recommend something better?

Thanks again,
Martin