- Timestamp:
- 04/16/12 14:57:18 (13 years ago)
- Location:
- issm/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
- Property svn:ignore
-
old new 7 7 config.status 8 8 configure 9 doxygen10 9 ISSM.paf 11 10 ISSM.ppf 12 11 ISSM.ppf_cache 13 12 libtool 14 list15 13 Makefile 16 14 Makefile.in
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
issm/trunk/src/mex
- Property svn:ignore
-
old new 1 __pycache__ 1 2 Makefile 2 3 .ignore.txt
-
- Property svn:ignore
-
issm/trunk/src/mex/Reducevectorgtof/Reducevectorgtof.cpp
r8910 r11995 8 8 9 9 /*input datasets: */ 10 Vec ug=NULL;11 Nodes * nodes=NULL;12 Parameters * parameters=NULL;10 Vector *ug = NULL; 11 Nodes *nodes = NULL; 12 Parameters *parameters = NULL; 13 13 14 14 /* output datasets: */ 15 Vec uf=NULL;15 Vector *uf = NULL; 16 16 17 17 /*Boot module: */ … … 22 22 23 23 /*Input datasets: */ 24 Fetch MatlabData(&ug,UG);25 Fetch MatlabData((DataSet**)&nodes,NODES);26 Fetch MatlabData(¶meters,PARAMETERS);24 FetchData(&ug,UG); 25 FetchData((DataSet**)&nodes,NODES); 26 FetchData(¶meters,PARAMETERS); 27 27 28 28 /*!Reduce vector: */ … … 30 30 31 31 /*write output datasets: */ 32 Write MatlabData(UF,uf);32 WriteData(UF,uf); 33 33 34 34 /*Free ressources: */ 35 35 delete nodes; 36 36 delete parameters; 37 VecFree(&ug);38 VecFree(&uf);37 xdelete(&ug); 38 xdelete(&uf); 39 39 40 40 /*end module: */
Note:
See TracChangeset
for help on using the changeset viewer.