Re: [Rd] qnbinom with small size is slow

2020-08-24 Thread Martin Maechler
> Constantin Ahlmann-Eltze > on Fri, 21 Aug 2020 11:51:13 +0200 writes: > Hi Martin, thanks for verifying. I agree that the > Cornish-Fisher seems to struggle with the small size > parameters, but I also don't have a good idea how to > replace it. > But I think fi

[Rd] browser() cannot be called consistently from another environment

2020-08-24 Thread Antoine Fabri
Dear R-devel, I have this debugging function that applies side effects, then acts like browser once it's done : meta_browser <- function() { # ... on.exit(eval.parent(quote(browser( } I can use it with a function such as fun1 below : fun1 <- function(){ meta_browser() print("hello")