Changeset 12815
- Timestamp:
- 07/30/12 09:43:46 (13 years ago)
- Location:
- issm/trunk-jpl/externalpackages/triangle
- Files:
-
- 4 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/triangle/install-linux64.sh
r12802 r12815 18 18 19 19 #Patch triangle.c 20 patch triangle.c ../triangle.c.patch .matlab20 patch triangle.c ../triangle.c.patch 21 21 22 22 #Compile triangle -
issm/trunk-jpl/externalpackages/triangle/triangle.c.patch
r1 r12815 5 5 > * double precision activation in exactinit(); The rest is not changed. 6 6 > * We also created the ice_makefile to compile Triangle into a library. */ 7 > #include <mat.h>8 > #include <matrix.h> 7 > /* #include <mat.h> 8 > #include <matrix.h> */ 9 9 > #define ANSI_DECLARATORS 10 10 > #define NO_TIMER … … 134 134 < memptr = (VOID *) malloc((unsigned int) size); 135 135 --- 136 > memptr = (VOID *) mxMalloc((unsigned int) size);137 > //memptr = (VOID *) malloc((unsigned int) size);136 > //memptr = (VOID *) mxMalloc((unsigned int) size); 137 > memptr = (VOID *) malloc((unsigned int) size); 138 138 1447c1543,1544 139 139 < free(memptr); 140 140 --- 141 > //free(memptr);142 > mxFree(memptr);141 > free(memptr); 142 > //mxFree(memptr); 143 143 3665,3670c3762,3767 144 144 < void printtriangle(struct mesh *m, struct behavior *b, struct otri *t)
Note:
See TracChangeset
for help on using the changeset viewer.