IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 15890


Ignore:
Timestamp:
Dec 22, 2007, 7:42:03 AM (18 years ago)
Author:
eugene
Message:

fixed sorting error

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psastro/src/psastroConvert.c

    r15667 r15890  
    132132
    133133    psF32 diff = mA - mB;
    134     if (diff > FLT_EPSILON) return (+1);
    135     if (diff < FLT_EPSILON) return (-1);
     134    if (diff > +FLT_EPSILON) return (+1);
     135    if (diff < -FLT_EPSILON) return (-1);
    136136    return (0);
    137137}
Note: See TracChangeset for help on using the changeset viewer.