blah blah blah is here! blah blah » Close

1
votes
1 answers

double-precision numbers being miscalculated

I've wasted too much time trying to chase down this very strange bug. Simply put, if I say, for example, double a = 1.3; double b = 4.5; double c = a - b; then the result for c will be -3.2. We all know that despite whatever bla ...

Feedback