IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 13, 2006, 11:13:48 AM (20 years ago)
Author:
Paul Price
Message:

Synchronising with SDRS, and cleaning up:

  • Replaced is_psType() with PS_ASSERT_PTR() throughout psLib.
  • Changed "char *" to "psString" where appropriate in psDB and a few other places (to indicate pointers on the PS memory system).
  • Removed psLogArguments and psTraceArguments (functionality in psArgumentVerbosity).
  • Renamed psMetadataLookupMD to psMetadataLookupMetadata (it was about time...). Similarly with the psPolynomial?D{From,To}MD functions.
  • Removed psMetadataRemove() since it is ambiguous about what's removed --- use psMetadataRemove{Key,Index}.
  • psArrayRemoveByPos --> psArrayRemoveIndex
  • psArrayRemove --> psArrayRemoveData
File:
1 edited

Legend:

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

    r8627 r9538  
    66*  This file contains the routines that allocate, free, and evaluate splines.
    77*
    8 *  @version $Revision: 1.153 $ $Name: not supported by cvs2svn $
    9 *  @date $Date: 2006-08-26 04:34:28 $
     8*  @version $Revision: 1.154 $ $Name: not supported by cvs2svn $
     9*  @date $Date: 2006-10-13 21:13:48 $
    1010*
    1111*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    168168bool psMemCheckSpline1D(psPtr ptr)
    169169{
    170     if (!is_psType(ptr)) {
    171         return false;
    172     }
     170    PS_ASSERT_PTR(ptr, false);
    173171    return ( psMemGetDeallocator(ptr) == (psFreeFunc)spline1DFree );
    174172}
Note: See TracChangeset for help on using the changeset viewer.