IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 2, 2005, 2:54:13 PM (21 years ago)
Author:
desonia
Message:

Added SWIG and autoconf.

File:
1 edited

Legend:

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

    r3097 r3115  
    77 *  polynomials.  It also contains a Gaussian functions.
    88 *
    9  *  @version $Revision: 1.85 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2005-01-26 20:47:41 $
     9 *  @version $Revision: 1.86 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2005-02-03 00:54:10 $
    1111 *
    1212 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    12021202    PS_VECTOR_CHECK_TYPE(x, PS_TYPE_F32, NULL);
    12031203
    1204     psVector *tmp;
    1205     psVector *myX;
     1204    psVector *tmp = NULL;
     1205    psVector *myX = NULL;
    12061206    psS32 i;
    12071207
     
    12441244    PS_VECTOR_CHECK_TYPE(y, PS_TYPE_F32, NULL);
    12451245
    1246     psVector *tmp;
    1247     psVector *myX;
    1248     psVector *myY;
     1246    psVector *tmp = NULL;
     1247    psVector *myX = NULL;
     1248    psVector *myY = NULL;
    12491249    psS32 i;
    12501250    psS32 vecLen=x->n;
     
    13021302    PS_VECTOR_CHECK_TYPE(z, PS_TYPE_F32, NULL);
    13031303
    1304     psVector *tmp;
    1305     psVector *myX;
    1306     psVector *myY;
    1307     psVector *myZ;
     1304    psVector *tmp = NULL;
     1305    psVector *myX = NULL;
     1306    psVector *myY = NULL;
     1307    psVector *myZ = NULL;
    13081308    psS32 i;
    13091309    psS32 vecLen=x->n;
     
    13701370    PS_VECTOR_CHECK_TYPE(z, PS_TYPE_F32, NULL);
    13711371
    1372     psVector *tmp;
    1373     psVector *myW;
    1374     psVector *myX;
    1375     psVector *myY;
    1376     psVector *myZ;
     1372    psVector *tmp = NULL;
     1373    psVector *myW = NULL;
     1374    psVector *myX = NULL;
     1375    psVector *myY = NULL;
     1376    psVector *myZ = NULL;
    13771377    psS32 i;
    13781378    psS32 vecLen=x->n;
     
    16031603    PS_VECTOR_CHECK_TYPE(x, PS_TYPE_F64, NULL);
    16041604
    1605     psVector *tmp;
    1606     psVector *myX;
     1605    psVector *tmp = NULL;
     1606    psVector *myX = NULL;
    16071607    psS32 i;
    16081608
     
    16481648    PS_VECTOR_CHECK_TYPE(y, PS_TYPE_F64, NULL);
    16491649
    1650     psVector *tmp;
    1651     psVector *myX;
    1652     psVector *myY;
     1650    psVector *tmp = NULL;
     1651    psVector *myX = NULL;
     1652    psVector *myY = NULL;
    16531653    psS32 i;
    16541654    psS32 vecLen=x->n;
     
    17101710    PS_VECTOR_CHECK_TYPE(z, PS_TYPE_F64, NULL);
    17111711
    1712     psVector *tmp;
    1713     psVector *myX;
    1714     psVector *myY;
    1715     psVector *myZ;
     1712    psVector *tmp = NULL;
     1713    psVector *myX = NULL;
     1714    psVector *myY = NULL;
     1715    psVector *myZ = NULL;
    17161716    psS32 i;
    17171717    psS32 vecLen=x->n;
     
    17821782    PS_VECTOR_CHECK_TYPE(z, PS_TYPE_F64, NULL);
    17831783
    1784     psVector *tmp;
    1785     psVector *myW;
    1786     psVector *myX;
    1787     psVector *myY;
    1788     psVector *myZ;
     1784    psVector *tmp = NULL;
     1785    psVector *myW = NULL;
     1786    psVector *myX = NULL;
     1787    psVector *myY = NULL;
     1788    psVector *myZ = NULL;
    17891789    psS32 i;
    17901790    psS32 vecLen=x->n;
Note: See TracChangeset for help on using the changeset viewer.