If you just run the failed test, does it segfault? What I get when I
run it is
> bar <- function() 1+1
> foo <- function() { on.exit(bar()); foo() }
> tryCatch(foo(), error=function(x) TRUE) # now simple "infinite recursion"
[1] TRUE
Clearly a segfault on an infinite recursion is undesirable,
Hi there,
I initially asked about this on r-help and was told this might be a better
venue. I’m not really convinced from reading the posting guide, but I’ll give
it a shot. It was also suggested that the R-Project doesn’t really care about
building with “non-standard” compilers, but I can’t fi
Thank you Jim for the feedback.
I actually implemented it the way I describe it in my first email and it
seems fast enough for me.
Just to give a bit of context I will need it at some point in package kit.
I also implemented subset by row which I actually need more as I am working
on a faster ver