Changeset 4449
- Timestamp:
- 07/07/10 16:38:58 (15 years ago)
- Location:
- issm/trunk/src
- Files:
-
- 5 added
- 3 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/Makefile.am
r4397 r4449 458 458 ./modules/InputUpdateFromSolutionx/InputUpdateFromSolutionx.h\ 459 459 ./modules/InputUpdateFromSolutionx/InputUpdateFromSolutionx.cpp\ 460 ./modules/DakotaResponsesx/DakotaResponsesx.h\ 461 ./modules/DakotaResponsesx/DakotaResponsesx.cpp\ 460 462 ./modules/GetSolutionFromInputsx/GetSolutionFromInputsx.h\ 461 463 ./modules/GetSolutionFromInputsx/GetSolutionFromInputsx.cpp\ … … 1003 1005 ./modules/InputUpdateFromSolutionx/InputUpdateFromSolutionx.h\ 1004 1006 ./modules/InputUpdateFromSolutionx/InputUpdateFromSolutionx.cpp\ 1007 ./modules/DakotaResponsesx/DakotaResponsesx.h\ 1008 ./modules/DakotaResponsesx/DakotaResponsesx.cpp\ 1005 1009 ./modules/GetSolutionFromInputsx/GetSolutionFromInputsx.h\ 1006 1010 ./modules/GetSolutionFromInputsx/GetSolutionFromInputsx.cpp\ -
issm/trunk/src/mex/InputUpdateFromDakota/InputUpdateFromDakota.cpp
r4439 r4449 19 19 double* variables=NULL; 20 20 char** variables_descriptors=NULL; 21 char* string=NULL; 21 22 int numvariables; 22 23 mxArray* pfield=NULL; … … 41 42 variables_descriptors=(char**)xmalloc(numvariables*sizeof(char*)); 42 43 for(i=0;i<numvariables;i++){ 44 43 45 pfield=mxGetCell(VARIABLESDESCRIPTORS,i); 44 variables_descriptors[i]=mxGetString(pfield); 46 stringlength = (mxGetM(pfield) * mxGetN(pfield) * sizeof(mxChar)) + 1 ; 47 mxGetString(pfield,string,stringlength); 48 49 variables_descriptors[i]=string; 45 50 } 46 51 -
issm/trunk/src/mex/Makefile.am
r4439 r4449 15 15 ContourToMesh \ 16 16 ContourToNodes \ 17 InputControlConstrain \18 17 CostFunction \ 19 InputDepthAverage\ 20 NodesDof\ 18 DakotaResponses\ 21 19 Du\ 22 20 Echo\ 23 21 ElementConnectivity\ 22 InputControlConstrain \ 23 InputDepthAverage\ 24 24 InputExtrude\ 25 25 FieldAverageOntoVertices\ … … 42 42 MpcNodes\ 43 43 NodeConnectivity\ 44 NodesDof\ 44 45 NormalizeConstraints\ 45 46 Orth\ … … 135 136 NodesDof/NodesDof.h 136 137 138 DakotaResponses_SOURCES = DakotaResponses/DakotaResponses.cpp\ 139 DakotaResponses/DakotaResponses.h 140 137 141 Du_SOURCES = Du/Du.cpp\ 138 142 Du/Du.h
Note:
See TracChangeset
for help on using the changeset viewer.