Changeset 974 for trunk/psLib/src/collections
- Timestamp:
- Jun 9, 2004, 3:58:06 PM (22 years ago)
- Location:
- trunk/psLib/src/collections
- Files:
-
- 4 edited
-
psBitSet.h (modified) (3 diffs)
-
psList.h (modified) (3 diffs)
-
psSort.h (modified) (3 diffs)
-
psVector.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psBitSet.h
r966 r974 8 8 * string. 9 9 * 10 * @ingroup BitSet 11 * 10 12 * @author Ross Harman, MHPCC 11 13 * 12 * @version $Revision: 1. 5$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-06-10 0 0:29:57$14 * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2004-06-10 01:58:06 $ 14 16 * 15 17 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 18 20 #ifndef PSBITSET_H 19 21 #define PSBITSET_H 22 23 /// @addtogroup BitSet 24 /// @{ 20 25 21 26 /******************************************************************************/ … … 111 116 ); 112 117 118 /// @} 119 113 120 #endif -
trunk/psLib/src/collections/psList.h
r942 r974 4 4 /** @file psList.h 5 5 * @brief Support for doubly linked lists 6 * @ingroup DataContainers7 6 * 8 7 * @author Robert Lupton, Princeton University 9 8 * @author Robert Daniel DeSonia, MHPCC 10 9 * 11 * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-06-09 02:16:41 $ 10 * @ingroup LinkedList 11 * 12 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-06-10 01:58:06 $ 13 14 * 14 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 18 19 19 20 #include "psVector.h" 21 22 /** @addtogroup LinkedList 23 * @{ 24 */ 20 25 21 26 /** Special values of index into list … … 54 59 } 55 60 psList; 56 57 /** @addtogroup DataContainers General Data Container Utilities58 * @{59 */60 61 61 62 /** Constructor */ -
trunk/psLib/src/collections/psSort.h
r945 r974 12 12 * in the sorted array is undefined. 13 13 * 14 * @ingroup Sort 15 * 14 16 * @author Ross Harman, MHPCC 15 17 * 16 * @version $Revision: 1. 5$ $Name: not supported by cvs2svn $17 * @date $Date: 2004-06- 09 18:23:22$18 * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $ 19 * @date $Date: 2004-06-10 01:58:06 $ 18 20 * 19 21 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 22 24 #ifndef PSSORT_H 23 25 #define PSSORT_H 26 27 /// @addtogroup Sort 28 /// @{ 24 29 25 30 /******************************************************************************/ … … 58 63 psVector *psSortIndex(psVector *restrict outVector, const psVector *restrict inVector); 59 64 65 /// @} 66 60 67 #endif -
trunk/psLib/src/collections/psVector.h
r836 r974 6 6 * in manupulating vectors. 7 7 * 8 * @ingroup Vector 9 * 8 10 * @author Robert DeSonia, MHPCC 9 11 * @author Ross Harman, MHPCC 10 12 * 11 * @version $Revision: 1. 9$ $Name: not supported by cvs2svn $12 * @date $Date: 2004-06- 03 00:32:32$13 * @version $Revision: 1.10 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2004-06-10 01:58:06 $ 13 15 * 14 16 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 19 21 20 22 #include "psType.h" 23 24 /// @addtogroup Vector 25 /// @{ 21 26 22 27 /** An vector to support primitive types. … … 121 126 ); 122 127 128 /// @} 129 123 130 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
