source:
issm/oecreview/Archive/14312-15392/ISSM-14906-14907.diff
Last change on this file was 15393, checked in by , 12 years ago | |
---|---|
File size: 4.0 KB |
-
../trunk-jpl/src/c/solutions/DakotaSpawnCore.h
1 #ifndef _DAKOTA_SPAWN_CORE_ 2 #define _DAKOTA_SPAWN_CORE_ 3 int DakotaSpawnCore(double* responses, int numresponses, double* variables, char** variables_descriptors,int numvariables, void* femmodel,int counter); 4 #endif -
../trunk-jpl/src/c/solutions/solutions.h
5 5 #ifndef SOLUTIONS_H_ 6 6 #define SOLUTIONS_H_ 7 7 8 #include "../classes/objects/objects.h" 9 #include "../io/io.h" 10 #include "../toolkits/toolkits.h" 11 8 /*forward declarations: */ 12 9 struct OptArgs; 13 10 class FemModel; 11 class Parameters; 12 template <class doubletype> class Matrix; 13 template <class doubletype> class Vector; 14 14 15 #include "../io/Comm/Comm.h" 16 #include "../include/types.h" 17 15 18 /*cores: */ 16 19 void adjointdiagnostic_core(FemModel* femmodel); 17 20 void adjointbalancethickness_core(FemModel* femmodel); … … 50 53 void ResetBoundaryConditions(FemModel* femmodel, int analysis_type); 51 54 COMM EnvironmentInit(int argc,char** argv); 52 55 void EnvironmentFinalize(void); 53 int DakotaSpawnCore(double* responses, int numresponses, double* variables, char** variables_descriptors,int numvariables, void* femmodel,int counter);54 56 void PrintBanner(void); 55 57 56 58 //solution configuration … … 59 61 void WrapperCorePointerFromSolutionEnum(void (**psolutioncore)(FemModel*),Parameters* parameters,int solutiontype,bool nodakotacore=false); 60 62 void AdjointCorePointerFromSolutionEnum(void (**padjointcore)(FemModel*),int solutiontype); 61 63 64 62 65 #endif -
../trunk-jpl/src/c/solutions/dakota_core.cpp
47 47 #include <DakotaStrategy.H> 48 48 #include <DakotaModel.H> 49 49 #include <DakotaInterface.H> 50 #include "./DakotaSpawnCore.h" 50 51 #endif 51 52 /*}}}*/ 52 53 -
../trunk-jpl/src/c/Makefile.am
362 362 ./modules/AverageOntoPartitionx/AverageOntoPartitionx.h\ 363 363 ./modules/ModelProcessorx/Dakota/CreateParametersDakota.cpp\ 364 364 ./solutions/dakota_core.cpp\ 365 ./solutions/DakotaSpawnCore.h\ 365 366 ./solutions/DakotaSpawnCore.cpp 366 367 #}}} 367 368 #Transient sources {{{ -
../trunk-jpl/src/c/classes/dakota/DakotaPlugin.cpp
20 20 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 21 21 #endif 22 22 23 /*Standard ISSM includes: */24 #include "../../shared/shared.h"25 #include "../../include/include.h"26 #include "../../solutions/solutions.h"27 #include "../classes.h"28 29 23 /*Standard includes: */ 30 24 #include <string> 31 25 26 /*ISSM includes: */ 27 #include "../../include/types.h" 28 #include "../../shared/MemOps/MemOps.h" 29 #include "../../solutions/DakotaSpawnCore.h" 30 31 32 32 #ifdef _HAVE_DAKOTA_ //only works if dakota library has been compiled in. 33 33 34 34 //Dakota headers -
../trunk-jpl/src/c/classes/dakota/DakotaPlugin.h
8 8 9 9 /*Headers:*/ 10 10 #include <DirectApplicInterface.H> 11 #include "../../toolkits/toolkits.h"12 #include "../../classes/classes.h"13 11 14 12 namespace SIM { 15 13
Note:
See TracBrowser
for help on using the repository browser.