Changeset 15177


Ignore:
Timestamp:
05/30/13 11:58:56 (12 years ago)
Author:
jschierm
Message:

NEW: Updated dakota_core.cpp for Dakota 5.3.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/analyses/dakota_core.cpp

    r15009 r15177  
    4040
    4141#ifdef _HAVE_DAKOTA_ //only works if dakota library has been compiled in.
     42#if _DAKOTA_MAJOR_ < 5 || (_DAKOTA_MAJOR_ == 5 && _DAKOTA_MINOR_ < 3)
    4243#include <ParallelLibrary.H>
    4344#include <ProblemDescDB.H>
     
    4546#include <DakotaModel.H>
    4647#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
    4755#include "./DakotaSpawnCore.h"
    4856#endif
     
    5058/*DakotaPlugin class {{{*/
    5159#ifdef _HAVE_DAKOTA_ //only works if dakota library has been compiled in.
     60#if _DAKOTA_MAJOR_ < 5 || (_DAKOTA_MAJOR_ == 5 && _DAKOTA_MINOR_ < 3)
    5261#include <DirectApplicInterface.H>
    5362#include <DakotaResponse.H>
     
    5665#include <ProblemDescDB.H>
    5766#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
    5874namespace SIM {
    5975        class DakotaPlugin: public Dakota::DirectApplicInterface{
Note: See TracChangeset for help on using the changeset viewer.