IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 27, 2004, 10:20:11 AM (22 years ago)
Author:
gusciora
Message:

I've been unifying the naming conventions for various macros that check
functions parameters for type, size, non-NULL ...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/dataManip/psMinimize.c

    r2213 r2214  
    99 *  @author GLG, MHPCC
    1010 *
    11  *  @version $Revision: 1.67 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2004-10-27 20:11:47 $
     11 *  @version $Revision: 1.68 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2004-10-27 20:20:11 $
    1313 *
    1414 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    426426{
    427427    PS_PTR_CHECK_NULL(min, NULL);
    428     PS_VECTOR_CHEC_NULL(params, NULL);
     428    PS_VECTOR_CHECK_NULL(params, NULL);
    429429    PS_VECTOR_CHECK_EMPTY(params, NULL);
    430430    PS_PTR_CHECK_NULL(x, NULL);
    431     PS_VECTOR_CHEC_NULL(y, NULL);
     431    PS_VECTOR_CHECK_NULL(y, NULL);
    432432    PS_VECTOR_CHECK_EMPTY(y, NULL);
    433433    PS_VECTOR_CHECK_SIZE_EQUAL(x, y, NULL);
     
    855855    psS32 i;
    856856    psPolynomial1D *tmpPoly;
    857     PS_CHECK_NULL_POLY(myPoly, NULL);
    858     PS_VECTOR_CHEC_NULL(y, NULL);
     857    PS_POLY_CHECK_NULL(myPoly, NULL);
     858    PS_VECTOR_CHECK_NULL(y, NULL);
    859859    PS_VECTOR_CHECK_EMPTY(y, NULL);
    860860    psVector *x64 = NULL;
     
    13191319                        psMinimizePowellFunc func)
    13201320{
    1321     PS_VECTOR_CHEC_NULL(params, NULL);
     1321    PS_VECTOR_CHECK_NULL(params, NULL);
    13221322    PS_VECTOR_CHECK_EMPTY(params, NULL);
    13231323    PS_PTR_CHECK_NULL(min, NULL);
Note: See TracChangeset for help on using the changeset viewer.