I want to protect my variable from storing overflow values .
I am Calculating Loss at every level in a tree and at some stages.
- it gives values like 4.94567e+302 ;Is this value Correct .If i compare it(Like Minimum ,Maximum etc) with any other values .Will it give the right answer?
- Some Times it gives negative answer but Formula can not give negative values so surely this kind of value is wrong
I want to do Following thing in my c++ code .
ForExample:
long double loss; //8 Bytes Floating Number
loss=calculate_loss();
if(loss value is greater than Capacity)
do
store 8 bytes in loss abd neglect remaining;
end if
if your capacity should be limited to the maximum or minimum capacity of the double (or float) datatype you can use floating point exceptions (not to be mistaken with C++ exceptions). Their signalling needs to be enabled in the compiler options and the you can map those to C++ exceptions detecting an overflow of the datatype.
here's an msdn page that describes the FP exceptions pretty good. At the bottom of the page you will find examples how to map that to C++ exceptions. http://msdn.microsoft.com/en-us/library/aa289157%28v=vs.71%29.aspx