00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef BonAmplSetup_H
00011 #define BonAmplSetup_H
00012 #include "BonBonminSetup.hpp"
00013 #include "BonAmplInterface.hpp"
00014
00015 namespace Bonmin
00016 {
00017 class BonminAmplSetup: public BonminSetup
00018 {
00019 public:
00021 void initialize(char **& argv);
00023 void initialize(AmplInterface &toFill, char **& argv);
00025 void initialize(char **& argv, std::string& opt_file_content, std::string& nl_file_content, bool createContinuousSolver );
00027 void initialize(AmplInterface &toFill, char **& argv, std::string& opt_file_content, std::string& nl_file_content, bool createContinuousSolver = true);
00029 void fillOsiInterface(AmplInterface &toFill, char **& argv, std::string & options, std::string & nl, bool createContinuousSolver = true);
00030 };
00031 }
00032 #endif