Changeset 11995 for issm/trunk/src/mex/Orth/Orth.cpp
- 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/Orth/Orth.cpp
r8910 r11995 8 8 9 9 /*input datasets: */ 10 Vec gradj=NULL;11 Vec oldgradj=NULL;10 Vector* gradj=NULL; 11 Vector* oldgradj=NULL; 12 12 13 13 /* output datasets: */ 14 Vec newgradj=NULL;14 Vector* newgradj=NULL; 15 15 16 16 /*Boot module: */ … … 21 21 22 22 /*Input datasets: */ 23 Fetch MatlabData(&gradj,GRADJ);24 Fetch MatlabData(&oldgradj,OLDGRADJ);23 FetchData(&gradj,GRADJ); 24 FetchData(&oldgradj,OLDGRADJ); 25 25 26 26 /*!Reduce load from g to f size: */ … … 28 28 29 29 /*write output datasets: */ 30 Write MatlabData(NEWGRADJ,newgradj);30 WriteData(NEWGRADJ,newgradj); 31 31 32 32 /*Free ressources: */ 33 VecFree(&gradj);34 VecFree(&oldgradj);35 VecFree(&newgradj);33 xdelete(&gradj); 34 xdelete(&oldgradj); 35 xdelete(&newgradj); 36 36 37 37 /*end module: */
Note:
See TracChangeset
for help on using the changeset viewer.