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/collections/psVector.h

    r3025 r3115  
    1111 *  @author Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2005-01-17 20:58:21 $
     13 *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2005-02-03 00:54:10 $
    1515 *
    1616 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    8484 */
    8585psVector* psVectorRealloc(
    86     psVector* restrict psVec,          ///< Vector to reallocate.
    87     psU32 nalloc                ///< Total number of elements to make available.
     86    psVector* psVec,                   ///< Vector to reallocate.
     87    psU32 nalloc                       ///< Total number of elements to make available.
    8888);
    8989
     
    9898 */
    9999psVector* psVectorRecycle(
    100     psVector* restrict psVec,
     100    psVector* psVec,
    101101    ///< Vector to recycle.  If NULL, a new vector is created.  No effort
    102102    ///< taken to preserve the values.
    103103
    104     psU32 nalloc,               ///< Total number of elements to make available.
     104    psU32 nalloc,                      ///< Total number of elements to make available.
    105105    psElemType type                    ///< the datatype of the returned vector
    106106);
     
    128128 */
    129129psVector* psVectorSort(
    130     psVector* restrict outVector,      ///< the output vector to recycle, or NULL if new vector desired.
    131     const psVector* restrict inVector  ///< the vector to sort.
     130    psVector* outVector,               ///< the output vector to recycle, or NULL if new vector desired.
     131    const psVector* inVector           ///< the vector to sort.
    132132);
    133133
     
    140140 */
    141141psVector* psVectorSortIndex(
    142     psVector* restrict outVector,      ///< vector to recycle
    143     const psVector* restrict inVector  ///< vector to sort
     142    psVector* outVector,               ///< vector to recycle
     143    const psVector* inVector           ///< vector to sort
    144144);
    145145
Note: See TracChangeset for help on using the changeset viewer.