Changeset 6349
- Timestamp:
- Feb 7, 2006, 2:00:36 PM (20 years ago)
- Location:
- trunk/psLib
- Files:
-
- 2 edited
-
src/sys/psType.h (modified) (2 diffs)
-
test/mathtypes/tst_psVector.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psType.h
r6348 r6349 10 10 * @author Ross Harman, MHPCC 11 11 * 12 * @version $Revision: 1.4 5$ $Name: not supported by cvs2svn $13 * @date $Date: 2006-02-0 7 23:36:15 $12 * @version $Revision: 1.46 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2006-02-08 00:00:35 $ 14 14 * 15 15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 79 79 */ 80 80 typedef enum { 81 PS_TYPE_S8 ,///< Character.82 PS_TYPE_S16 ,///< Short integer.83 PS_TYPE_S32 ,///< Integer.84 PS_TYPE_S64 ,///< Long integer.85 PS_TYPE_U8 ,///< Unsigned character.86 PS_TYPE_U16 ,///< Unsigned psS16 integer.87 PS_TYPE_U32 ,///< Unsigned integer.88 PS_TYPE_U64 ,///< Unsigned psS64 integer.89 PS_TYPE_F32 ,///< Single-precision Floating point.90 PS_TYPE_F64 ,///< Double-precision floating point.91 PS_TYPE_C32 ,///< Complex numbers consisting of single-precision floating point.92 PS_TYPE_C64 ,///< Complex numbers consisting of double-precision floating point.93 PS_TYPE_BOOL ///< Boolean.81 PS_TYPE_S8 = 0x0101, ///< Character. 82 PS_TYPE_S16 = 0x0102, ///< Short integer. 83 PS_TYPE_S32 = 0x0104, ///< Integer. 84 PS_TYPE_S64 = 0x0108, ///< Long integer. 85 PS_TYPE_U8 = 0x0301, ///< Unsigned character. 86 PS_TYPE_U16 = 0x0302, ///< Unsigned psS16 integer. 87 PS_TYPE_U32 = 0x0304, ///< Unsigned integer. 88 PS_TYPE_U64 = 0x0308, ///< Unsigned psS64 integer. 89 PS_TYPE_F32 = 0x0404, ///< Single-precision Floating point. 90 PS_TYPE_F64 = 0x0408, ///< Double-precision floating point. 91 PS_TYPE_C32 = 0x0808, ///< Complex numbers consisting of single-precision floating point. 92 PS_TYPE_C64 = 0x0810, ///< Complex numbers consisting of double-precision floating point. 93 PS_TYPE_BOOL = 0x1301 ///< Boolean. 94 94 } psElemType; 95 95 -
trunk/psLib/test/mathtypes/tst_psVector.c
r5656 r6349 14 14 * @author Ross Harman, MHPCC 15 15 * 16 * @version $Revision: 1. 8$ $Name: not supported by cvs2svn $17 * @date $Date: 200 5-12-02 00:51:48$16 * @version $Revision: 1.9 $ $Name: not supported by cvs2svn $ 17 * @date $Date: 2006-02-08 00:00:36 $ 18 18 * 19 19 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 50 50 { 51 51 psLogSetLevel(PS_LOG_INFO); 52 psLogSetFormat("HLNM"); 52 53 53 54 if ( ! runTestSuite(stderr,"psVector",tests,argc,argv) ) {
Note:
See TracChangeset
for help on using the changeset viewer.
