Reporter | Drew Noakes (drewnoakes) |
---|---|
Created | Jan 30, 2012 5:36:01 PM |
Updated | Mar 22, 2012 9:17:39 PM |
Priority | Normal |
Type | Bug |
Fix versions | No Fix versions |
State | Submitted |
Assignee | Alexey Kuptsov (alexey.kuptsov) |
Subsystem | Code Analysis |
Affected versions | 6.1 |
Fixed in build | No Fixed in build |
Before:
After:
Should be:
d == 0
After:
Math.Abs(d - 0) < EPSILON
Should be:
Math.Abs(d) < EPSILON