| Comparison between Integers and Floats Category | 
| Routines | 
| CompareFloat | Returns -1 if X1 < X2, 0 if they are the same, 1 if X1 > X2. | 
| FloatIsNegative | Returns True if X is Negative, ie X < -ESBTolerance. | 
| FloatIsPositive | Returns True if X is Positive, ie X > ESBTolerance. | 
| FloatIsZero | Returns True if X is within ESBTolerance of 0. | 
| GreaterFloat | Returns True if X1 > X2. | 
| LesserFloat | Returns True if X1 < X2. | 
| RelativePrime | If two Integers are Relative Prime to each other then GCD (X, Y) = 1. | 
| SameFloat | Returns True if X1 and X2 are within a "small" value of each other. | 
|  |