Changeset 2807 for inundation/pymetis/metis-4.0
- Timestamp:
- May 5, 2006, 4:56:59 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/pymetis/metis-4.0/Lib/struct.h
r2806 r2807 12 12 */ 13 13 14 typedef long idxtype; 14 /* Undefine the following #define in order to use short int as the idxtype */ 15 #define IDXTYPE_INT 16 17 /* Indexes are as long as integers for now */ 18 #ifdef IDXTYPE_INT 19 typedef int idxtype; 20 #else 21 typedef short idxtype; 22 #endif 15 23 16 24 #define MAXIDX (1<<8*sizeof(idxtype)-2)
Note: See TracChangeset
for help on using the changeset viewer.