I have a program that is finding paths in a graph and outputting the cumulative weight. All of the edges in the graph have an individual weight of 0 to 100 in the form of a float with at most 2 decimal places.
On Windows/Visual Studio 2010, for a particular path consisting of edges with 0 weight, it outputs the correct total weight of 0. However on Linux/GCC the program is saying the path has a weight of 2.35503e-38. I have had plenty of experiences with crazy bugs caused by floats, but when would 0 + 0 ever equal anything other than 0?
The only thing I can think of that is causing this is the program does treat some of the weights as integers and uses implicit coercion to add them to the total. But 0 + 0.0f still equals 0.0f! As a quick fix I reduce the total to 0 when less then 0.00001 and that is sufficient for my needs, for now. But what vodoo causes this?
NOTE: I am 100% confident that none of the weights in the graph exceed the range I mentioned and that all of the weights in this particular path are all 0.
EDIT: To elaborate, I have tried both reading the weights from a file and setting them in the code manually as equal to 0.0f No other operation is being performed on them other than adding them to the total.
assert(weight == 0.0f). – Emile Cormier Apr 24 '12 at 18:36x * 0 == 0for all x. Ifsum(xi) != 0, then there existsxi != 0. This can be proven by taking the contra-positive. I've therefore proven mathematically that one of the weights is actually not zero. :P – Emile Cormier Apr 24 '12 at 19:001e-40-1e-30. If you have any other non-null value in the path, then the uninitialized one would be negligible. – rodrigo Apr 24 '12 at 23:09