Changeset 1843
- Timestamp:
- 08/24/09 18:00:57 (16 years ago)
- Location:
- issm/trunk/src/c/objects
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/DakotaPlugin.cpp
r962 r1843 44 44 45 45 //constructor 46 DakotaPlugin::DakotaPlugin(const Dakota::ProblemDescDB& problem_db,void* in_ femmodels, void* in_inputs, int in_analysis_type, int in_sub_analysis_type):Dakota::DirectApplicInterface(problem_db){46 DakotaPlugin::DakotaPlugin(const Dakota::ProblemDescDB& problem_db,void* in_model, void* in_inputs, int in_analysis_type, int in_sub_analysis_type):Dakota::DirectApplicInterface(problem_db){ 47 47 48 48 49 femmodels=in_femmodels;49 model=in_model; 50 50 inputs=in_inputs; 51 51 analysis_type=in_analysis_type; … … 91 91 92 92 /*run core solution: */ 93 SpawnCore(responses,numFns, variables,variable_descriptors,numACV, femmodels,inputs,analysis_type,sub_analysis_type,counter);93 SpawnCore(responses,numFns, variables,variable_descriptors,numACV,model,inputs,analysis_type,sub_analysis_type,counter); 94 94 95 95 /*populate responses: */ -
issm/trunk/src/c/objects/DakotaPlugin.h
r962 r1843 18 18 public: 19 19 20 DakotaPlugin(const Dakota::ProblemDescDB& problem_db,void* femmodels, void* inputs, int analysis_type, int sub_analysis_type);20 DakotaPlugin(const Dakota::ProblemDescDB& problem_db,void* model, void* inputs, int analysis_type, int sub_analysis_type); 21 21 ~DakotaPlugin(); 22 22 23 23 /*these fields are used by core solutions: */ 24 void* femmodels;24 void* model; 25 25 void* inputs; 26 26 -
issm/trunk/src/c/objects/OptArgs.h
r1184 r1843 13 13 14 14 char* function_name; 15 mxArray* m ;15 mxArray* models; 16 16 mxArray* inputs; 17 17 mxArray* param_g; … … 29 29 30 30 struct OptArgs{ 31 FemModel* femmodel;31 Model* model; 32 32 double* param_g; 33 33 double* grad_g; -
issm/trunk/src/c/objects/Riftfront.cpp
r1805 r1843 787 787 return this->material_converged; 788 788 } 789 789 790 790 #undef __FUNCT__ 791 791 #define __FUNCT__ "Riftfront::OutputProperties" -
issm/trunk/src/c/objects/objects.h
r1628 r1843 28 28 #include "./Element.h" 29 29 #include "./NodeSets.h" 30 #include "./Model.h" 30 31 31 32 /*C objects: */
Note:
See TracChangeset
for help on using the changeset viewer.