IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 7546


Ignore:
Timestamp:
Jun 13, 2006, 1:55:34 PM (20 years ago)
Author:
Paul Price
Message:

Removing stats for psLookupTableInterpolateAll.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/types/tst_psLookupTable_01.c

    r6484 r7546  
    1212*  @author  Ross Harman, MHPCC
    1313*
    14 *  @version $Revision: 1.4 $  $Name: not supported by cvs2svn $
    15 *  @date  $Date: 2006-02-24 23:43:16 $
     14*  @version $Revision: 1.5 $  $Name: not supported by cvs2svn $
     15*  @date  $Date: 2006-06-13 23:55:34 $
    1616*
    1717*  Copyright 2004-5 Maui High Performance Computing Center, University of Hawaii
     
    816816    // Interpolate values with NULL table
    817817    psLogMsg(__func__,PS_LOG_INFO,"Following should generate an error message for NULL table");
    818     interpValues = psLookupTableInterpolateAll(table1,5, NULL);
     818    interpValues = psLookupTableInterpolateAll(table1,5);
    819819    if(interpValues != NULL ) {
    820820        psError(PS_ERR_UNKNOWN,true,"Did not return NULL for NULL table");
     
    829829        return 6;
    830830    }
    831     interpValues = psLookupTableInterpolateAll(table1,5.25, NULL);
     831    interpValues = psLookupTableInterpolateAll(table1,5.25);
    832832    if(interpValues == NULL) {
    833833        psError(PS_ERR_UNKNOWN,true,"Returned vector is NULL.");
     
    844844
    845845    // Interpolate values with index outside table
    846     interpValues = psLookupTableInterpolateAll(table1,0, NULL);
     846    interpValues = psLookupTableInterpolateAll(table1,0);
    847847    if(interpValues != NULL) {
    848848        psError(PS_ERR_UNKNOWN,true,"Did return NULL");
Note: See TracChangeset for help on using the changeset viewer.