IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 12293


Ignore:
Timestamp:
Mar 7, 2007, 11:12:13 AM (19 years ago)
Author:
Paul Price
Message:

Adding SVD sorting bug fix from Robert Lupton.

File:
1 edited

Legend:

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

    r12292 r12293  
    2222 *  @author Andy Becker, University of Washington (SVD).
    2323 *
    24  *  @version $Revision: 1.48 $ $Name: not supported by cvs2svn $
    25  *  @date $Date: 2007-03-07 20:48:55 $
     24 *  @version $Revision: 1.49 $ $Name: not supported by cvs2svn $
     25 *  @date $Date: 2007-03-07 21:12:13 $
    2626 *
    2727 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    915915        /* make sure that these things are sorted! */
    916916        if (i > 0) {
    917             assert(eval->data.F64[i] > eval->data.F64[i-1]);
     917            assert(eval->data.F64[i] <= eval->data.F64[i-1]);
    918918        }
    919919    }
Note: See TracChangeset for help on using the changeset viewer.