vote up 6 vote down star
1

Is there a standard and/or portable way to represent the smallest negative value (e.g. to use negative infinity) in a C(++) program?

DBL_MIN in float.h is the smallest positive number.

flag

76% accept rate
1  
I'll go for -DBL_MAX, but I'm sure there is some technical reason why this isn't so :-) – Neil Butterworth Jul 20 at 13:27
3  
@Neil, no there isn't, it's not like 2 Complement integers – fortran Jul 20 at 13:33
I haven't seen anything yet in the standard to say that the range of the floating point types has to be symmetrical around zero. But the constants in limits.h and <limits> suggest that both the C and C++ standard are kind of expecting they will be. – Steve Jessop Jul 20 at 20:03
@onebyone There is a sign bit (the 31st in float and the 63rd in double), so take any positive value and set the sign bit on, then you have the same magnitude, but negative, that's why it's symmetrical. In case you were wondering, yes, there's a positive zero and a negative zero. – fortran Jul 22 at 19:55

6 Answers

vote up 11 vote down check

-DBL_MAX in ANSI C

link|flag
this seems the most standard and portable – Will Jul 20 at 13:50
downvotes are pointless with an explaination – dfa Jul 25 at 20:29
vote up -1 vote down

A way to represent any value for a double is to use the IEEE-754 representation. You will have the desired value on any system. But I don't know if it would be a preferred method.

As told in the IEEE-754, the first bit is the sign bit, the next 11 bits are the exponent (there is a bias), and the last 52 bits are the fraction part.

So if the minimum value is required, the sign bit shall be 1, the exponent shall be 0, and the fraction parts shall be all 1's. That corresponds to the following (for a little-endian system) (didn't test it now actually):

double dVal;
char* bytes = &dval;
bytes[0] = 0x80;
bytes[1] = 0x00;
bytes[2] = 0xFF;
bytes[3] = 0xFF;
bytes[4] = 0xFF;
bytes[5] = 0xFF;
bytes[6] = 0xFF;
bytes[7] = 0xFF;
link|flag
-1: Using this approach in general would mean a noticeable chunk of non-portable code to maintain. Also, the value of dVal after running this code on 32-bit little endian is NaN :-) – Andrew Y Jul 20 at 17:05
1  
for the minimum value the exponent has to be positive, a negative represents smaller than 1 or -1 :-p also, you don't need to access the bytes individually, it's possible to cast to a long long and assign to the value 0xFFEFFFFFFFFFFFFFUL regardless the endianness – fortran Jul 21 at 13:52
vote up 1 vote down

Are you looking for actual infinity or the minimal finite value? If the former, use

-numeric_limits<double>::infinity()

which only works if

numeric_limits<double>::has_infinity

Otherwise, you'll have to use

-numeric_limits<double>::max()
link|flag
vote up 4 vote down
- std::numeric_limits<double>::max()

should work just fine

Numeric limits

link|flag
vote up 18 vote down

Floating point numbers (IEEE 754) are symmetrical, so if you can represent the greatest value (DBL_MAX or numeric_limits<double>::max()), just prepend a minus sign.

And then is the cool way:

double f;
(*((long long*)&f))= ~(1LL<<52);
link|flag
+1 For pointing out the symmetry of of floating point numbers :) – Andrew Hare Jul 20 at 13:35
What about C/C++ implementations which do not use IEEE 754 floats? – Steve Jessop Jul 20 at 20:03
@onebyone, tell me one that doesn't... I think you cannot, because all C/C++ compilers use the native processor format for floating point numbers, and now I cannot think about any FPU that doesn't adhere to the IEEE 754 standard (maybe in the dark ages of computing, when everybody had his own in house formats...) – fortran Jul 20 at 21:12
gcc's manual for -ffast-math says "Sets -fno-math-errno, -funsafe-math-optimizations, -ffinite-math-only, -fno-rounding-math, -fno-signaling-nans and -fcx-limited-range This option is not turned on by any -O option since it can result in incorrect output for programs which depend on an exact implementation of IEEE or ISO rules/specifications for math functions. It may, however, yield faster code for programs that do not require the guarantees of these specifications." Fast math is a common setting, and the Intel ICC for example defaults to it. All in all, not sure what this means for me :-) – Will Jul 20 at 22:30
It means implementations don't use IEEE 754 arithmetic, but to be fair those options do still use IEEE representation. You might find some emulation libraries using non-IEEE representation, since not all processors have a native float format (although they may publish a C ABI that includes a format, corresponding to emulation libs supplied by the manufacturer). Hence not all compilers can use one. Just depends what you mean when you ask for "standard and/or portable", there's portable in principle and portable in practice. – Steve Jessop Jul 20 at 22:59
show 1 more comment
vote up 14 vote down

Try this:

-1 * numeric_limits<double>::max()

Reference: numeric_limits

This class is specialized for each of the fundamental types, with its members returning or set to the different values that define the properties that type has in the specific platform in which it compiles.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.