Changeset 2806 for inundation/pymetis/pymetis/metis.c
- Timestamp:
- May 5, 2006, 4:27:36 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/pymetis/pymetis/metis.c
r2071 r2806 3 3 4 4 /* This must be the same as the metis idxtype */ 5 typedef intidxtype;5 typedef long idxtype; 6 6 7 7 #include "bridge.h" … … 61 61 return NULL; 62 62 63 elem_arr = (PyArrayObject *) PyArray_ContiguousFromObject(elements, PyArray_ INT, 1, 1);63 elem_arr = (PyArrayObject *) PyArray_ContiguousFromObject(elements, PyArray_LONG, 1, 1); 64 64 65 65 if(!elem_arr)
Note: See TracChangeset
for help on using the changeset viewer.