Changeset 3039
- Timestamp:
- Jun 1, 2006, 12:31:05 PM (18 years ago)
- Location:
- inundation/pymetis/metis-4.0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/pymetis/metis-4.0/Lib/struct.h
r2910 r3039 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) -
inundation/pymetis/metis-4.0/Makefile.in
r2910 r3039 4 4 5 5 # What optimization level to use 6 OPTFLAGS = -O2 -Wall6 OPTFLAGS = -O2 7 7 8 8 # What options to be used by the compiler 9 COPTIONS = 9 COPTIONS = 10 10 11 11 # What options to be used by the loader
Note: See TracChangeset
for help on using the changeset viewer.