zlacker

[return to "The largest number representable in 64 bits"]
1. matja+5c6[view] [source] 2023-11-27 20:54:05
>>tromp+(OP)
IEEE754 64-bit representation already has infinity:

    uint64_t x = 0x7ff0000000000000ULL;
    printf("%f\n", *(double *)&x);
output:

    inf
But you could use a representation where 0 is 0, and 1 is infinity, saving 63 bits...
◧◩
2. summer+5n6[view] [source] 2023-11-27 21:41:09
>>matja+5c6
That doesn't qualify the explicitly stated condition "a largest (finite) representable value".
[go to top]