Changeset 15177
- Timestamp:
- 05/30/13 11:58:56 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/dakota_core.cpp
r15009 r15177 40 40 41 41 #ifdef _HAVE_DAKOTA_ //only works if dakota library has been compiled in. 42 #if _DAKOTA_MAJOR_ < 5 || (_DAKOTA_MAJOR_ == 5 && _DAKOTA_MINOR_ < 3) 42 43 #include <ParallelLibrary.H> 43 44 #include <ProblemDescDB.H> … … 45 46 #include <DakotaModel.H> 46 47 #include <DakotaInterface.H> 48 #else 49 #include <ParallelLibrary.hpp> 50 #include <ProblemDescDB.hpp> 51 #include <DakotaStrategy.hpp> 52 #include <DakotaModel.hpp> 53 #include <DakotaInterface.hpp> 54 #endif 47 55 #include "./DakotaSpawnCore.h" 48 56 #endif … … 50 58 /*DakotaPlugin class {{{*/ 51 59 #ifdef _HAVE_DAKOTA_ //only works if dakota library has been compiled in. 60 #if _DAKOTA_MAJOR_ < 5 || (_DAKOTA_MAJOR_ == 5 && _DAKOTA_MINOR_ < 3) 52 61 #include <DirectApplicInterface.H> 53 62 #include <DakotaResponse.H> … … 56 65 #include <ProblemDescDB.H> 57 66 #include <ParallelLibrary.H> 67 #else 68 #include <DirectApplicInterface.hpp> 69 #include <DakotaResponse.hpp> 70 #include <ParamResponsePair.hpp> 71 #include <ProblemDescDB.hpp> 72 #include <ParallelLibrary.hpp> 73 #endif 58 74 namespace SIM { 59 75 class DakotaPlugin: public Dakota::DirectApplicInterface{
Note:
See TracChangeset
for help on using the changeset viewer.