Changeset 14016 for issm/trunk-jpl/src/wrappers
- Timestamp:
- 11/27/12 12:04:54 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/wrappers/NodeConnectivity/NodeConnectivity.cpp
r13236 r14016 13 13 14 14 /*inputs: */ 15 double* elements=NULL;16 int nel;17 int 15 int* elements=NULL; 16 int nels; 17 int nods; 18 18 19 19 /*outputs: */ 20 double* connectivity=NULL;21 int 20 int* connectivity=NULL; 21 int width; 22 22 23 23 /*Boot module: */ … … 28 28 29 29 /*Input datasets: */ 30 FetchData(&elements,&nel ,NULL,ELEMENTS);30 FetchData(&elements,&nels,NULL,ELEMENTS); 31 31 FetchData(&nods,NUMNODES); 32 32 33 33 /*!Generate internal degree of freedom numbers: */ 34 NodeConnectivityx(&connectivity, &width,elements,nel,nods);34 NodeConnectivityx(&connectivity,&width,elements,nels,nods); 35 35 36 36 /*write output datasets: */
Note:
See TracChangeset
for help on using the changeset viewer.