I am printing some data from a c++ program to be processed/visualized by Paraview, but I am having the following problem: Paraview supports Float32 and Float64. Float64 is equivalent to double with the typical limits +/- 1.7e +/- 308. But, my code is printing numbers like 6.5e-318 . This is throwing errors in Paraview when reading the data. I have verified that rounding those smalls numbers to zero make the error in Paraview disappears. I am not sure why I have such "high precision" output, maybe is because some numbers are stored in higher precision than double. For example, the following code reproduces the same behavior in my system:
#include <iostream>
int main(void)
{
const double var1 = 1.0e-318, var2 = 1.5e-318;
std::cout << 1.0e-318 << std::endl;
std::cout << var1 << std::endl;
std::cout << var1 - var2 << std::endl;
std::cout.setf(std::ios_base::fixed | std::ios_base::scientific, std::ios_base::floatfield);
std::cout << 1.0e-318 << std::endl;
std::cout << var1 << std::endl;
std::cout << var1 - var2 << std::endl;
return 0;
}
My output is: 9.99999e-319
9.99999e-319
-4.99999e-319
9.99999e-319
9.99999e-319
-4.99999e-319
My system specs: Mac Os X Snow Leopard Tested with : gcc-4.2 and gcc-4.6 Tested with : -m32, -m64 , -ffloat-store (not sure if this is useful)
Actually the output for me is fine, but for Paraview is not. I just want to know why I have this difference. I am very likely ignoring something related with Floating points which could be important. Could you please please give me some clue about this output/numerical behavior for doubles? Any help/suggestion is welcome.
Thanks in advance.
IS9.99999e-319 – GreenScape Sep 30 '11 at 14:20