IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 26, 2010, 10:37:36 AM (16 years ago)
Author:
eugene
Message:

merge updates from trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20101103/Ohana/src/opihi/dvo/find_matches.c

    r29123 r29845  
    8080  /* build spatial index (RA sort) referencing input array sequence */
    8181  for (i = 0; i < Npoints; i++) {
    82     X1[i] = Y1[i] = NAN;
     82    // we need to have a finite number for the sort below; index == -1 entries are skipped
     83    // in the matching process
     84    X1[i] = Y1[i] = 0.0;
    8385    N1[i] = i;
    8486    if (index[i] == -1) continue;
Note: See TracChangeset for help on using the changeset viewer.