summaryrefslogtreecommitdiff
path: root/build/Bonmin/include/coin/BonAmplSetup.hpp
diff options
context:
space:
mode:
authorHarpreet2016-09-03 00:34:27 +0530
committerHarpreet2016-09-03 00:34:27 +0530
commit4b64cf486f5c999fd8167758cae27839f3b50848 (patch)
treed9d06639fb7fa61aef59be0363655e4747105ec7 /build/Bonmin/include/coin/BonAmplSetup.hpp
parentd19794fb80a271a4c885ed90f97cfc12baa012f2 (diff)
downloadFOSSEE-Optim-toolbox-development-4b64cf486f5c999fd8167758cae27839f3b50848.tar.gz
FOSSEE-Optim-toolbox-development-4b64cf486f5c999fd8167758cae27839f3b50848.tar.bz2
FOSSEE-Optim-toolbox-development-4b64cf486f5c999fd8167758cae27839f3b50848.zip
Structure updated and intqpipopt files added
Diffstat (limited to 'build/Bonmin/include/coin/BonAmplSetup.hpp')
-rw-r--r--build/Bonmin/include/coin/BonAmplSetup.hpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/build/Bonmin/include/coin/BonAmplSetup.hpp b/build/Bonmin/include/coin/BonAmplSetup.hpp
deleted file mode 100644
index 152d1b4..0000000
--- a/build/Bonmin/include/coin/BonAmplSetup.hpp
+++ /dev/null
@@ -1,32 +0,0 @@
-// (C) Copyright International Business Machines Corporation 2007
-// All Rights Reserved.
-// This code is published under the Eclipse Public License.
-//
-// Authors :
-// Pierre Bonami, International Business Machines Corporation
-//
-// Date : 04/15/2007
-
-#ifndef BonAmplSetup_H
-#define BonAmplSetup_H
-#include "BonBonminSetup.hpp"
-#include "BonAmplInterface.hpp"
-
-namespace Bonmin
-{
- class BonminAmplSetup: public BonminSetup
- {
- public:
- /** initialize bonmin with ampl model using the command line arguments.*/
- void initialize(char **& argv);
- /** initialize bonmin with ampl model using the command line arguments and an existing OsiTMINLPInterface.*/
- void initialize(AmplInterface &toFill, char **& argv);
- /** initialize bonmin with ampl model using the command line arguments reading options and nl file from strings.*/
- void initialize(char **& argv, std::string& opt_file_content, std::string& nl_file_content, bool createContinuousSolver /*= false*/);
- /** initialize bonmin with ampl model using the command line arguments and an existing OsiTMINLPInterface reading options and nl file from strings.*/
- void initialize(AmplInterface &toFill, char **& argv, std::string& opt_file_content, std::string& nl_file_content, bool createContinuousSolver = true);
- /** For Bcp. Initialize the passed OsiTMINLP interface with ampl model using the options and nl files contained in two strings.*/
- void fillOsiInterface(AmplInterface &toFill, char **& argv, std::string & options, std::string & nl, bool createContinuousSolver = true);
- };
-}
-#endif