Re: [R-pkg-devel] Is winbuilder "offline"?

2024-07-20 Thread Rolf Turner
On Sat, 20 Jul 2024 06:20:00 +0200 Uwe Ligges wrote: > > Strange. Your package has been processed. Have you tried again? > Are you sure the maintainer address is specified correctly and that > the auto generated message did not make it onto your spam box? > > If it still does not work, please s

Re: [R-pkg-devel] How to get arbitrary precise inputs from R for an Rcpp package?

2024-07-20 Thread Leo Mada via R-package-devel
Dear Khue, As mentioned before, you can use Rmpfr to read in strings or compute higher precision values, like x = mpfr(1, 192) /10; # 0.1 with 192 bits precision # or x = mpfr("0.1", 192); mpfr(1, 192) /10 - mpfr("0.1", 192) # 1 'mpfr' number of precision 192 bits # [1] 0 However, I do not