IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 27, 2004, 9:51:55 AM (22 years ago)
Author:
gusciora
Message:

...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/math/psStats.c

    r1293 r1298  
    18041804
    18051805    // XXX: Should we abort if (stats->min == stats->max)?
    1806     if (stats->min >= stats->max) {
     1806    if ((stats->options & PS_STAT_USE_RANGE) &&
     1807            (stats->min >= stats->max)) {
    18071808        psAbort(__func__, "psVectorStats() called with range: %f to %f\n",
    18081809                stats->min, stats->max);
    18091810    }
    1810 
    1811 
    18121811
    18131812    PS_CHECK_VECTOR_TYPE(in, PS_TYPE_F32);
Note: See TracChangeset for help on using the changeset viewer.