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.
|
1
|
|||||||||||||
|
|
|
|
||
|
|
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):
|
||||||
|
|
|
Are you looking for actual infinity or the minimal finite value? If the former, use
which only works if
Otherwise, you'll have to use
|
||
|
|
|
|
|
|||
|
|
|
|
Floating point numbers (IEEE 754) are symmetrical, so if you can represent the greatest value ( And then is the cool way:
|
||||||||||
|
|
|
Try this:
Reference:
|
||
|
|