search for: sint_max

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

Did you mean: uint_max
2002 Nov 19
1
fexact.c
...he R files Boolean.h, Constants.h, and Memory.h), I have re-written all declarations of Sints as ints and, what is potentially more serious, I have re-written the line (lines 329 and 330, in fexact.c on R-1.6.1) /* IMAX is the largest representable Sint on the machine. */ const Sint imax = SINT_MAX; as const Sint imax = 2147483647; I have checked the program on an Intel machine (running Linux and compiled with gcc) and on an SGI machine running Irix 5.6 (compiled with gcc and, I think, using 32 bits), and so far all results are OK. However, I wonder if I am likely to run into prob...
2008 Jun 04
1
Splus/R typedef for C equivalent of S "integer"
We've been working on making it easier to write packages that work in both R and Splus. One issue is that R and Splus use different internal representations of integers and this makes a difference on their 64-bit versions: R uses ints (32 bits on 32-bit and 64-bit versions of R) and Splus uses longs (32 bits on 32-bit Splus and 64 bits on 64-bit Splus). The obvious ways to deal with the