You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// obsolete #define ISFTOIOK(f,i) (ABS(f)<-(D)IMIN && ((f)==(i) || FFIEQ(f,i))) // 64 bit: a float of IMIN does not equal integer IMIN
1195
+
#defineISFTOIOK(f,i) (likely((f)<FLIMAX) && likely((f)>=FLIMIN) && (likely((f)==(i)) || FFIEQ(f,i))) // a float of IMAX does not equal integer IMAX in 64-bit
0 commit comments