- 
    
Incident report
 - 
    Resolution: Fixed
 - 
    
Major
 - 
    1.8.6
 
When we evaluate the "eq" operator for function count(), we consider two values equal if they are within 10^-5 of each other.
When we evaluate the "ge" operator, we consider value A greater than or equal to another value B if "A >= B". Clearly, this is wrong, because if A is smaller than B, but within 10^-5, "ge" comparison should yield "true".