From 4b64cf486f5c999fd8167758cae27839f3b50848 Mon Sep 17 00:00:00 2001 From: Harpreet Date: Sat, 3 Sep 2016 00:34:27 +0530 Subject: Structure updated and intqpipopt files added --- build/Bonmin/include/coin/BonAmplInterface.hpp | 64 -------------------------- 1 file changed, 64 deletions(-) delete mode 100644 build/Bonmin/include/coin/BonAmplInterface.hpp (limited to 'build/Bonmin/include/coin/BonAmplInterface.hpp') diff --git a/build/Bonmin/include/coin/BonAmplInterface.hpp b/build/Bonmin/include/coin/BonAmplInterface.hpp deleted file mode 100644 index 055004c..0000000 --- a/build/Bonmin/include/coin/BonAmplInterface.hpp +++ /dev/null @@ -1,64 +0,0 @@ -// (C) Copyright International Business Machines Corporation and -// Carnegie Mellon University 2004, 2007 -// -// All Rights Reserved. -// This code is published under the Eclipse Public License. -// -// Authors : -// Pierre Bonami, Carnegie Mellon University, -// Andreas Waechter, International Business Machines Corporation -// -// Date : 12/01/2004 - -#ifndef BonminAmplInterface_H -#define BonminAmplInterface_H -#include "BonOsiTMINLPInterface.hpp" -#include "BonAmplTMINLP.hpp" - -class BM_lp; -namespace Bonmin -{ - /** Class for providing an Osi interface to Ipopt with an ampl nl file as input. */ - class AmplInterface: public OsiTMINLPInterface - { - public: - /** Default constructor */ - /** Default constructor only available for Bonmin's friends and child classes.*/ - AmplInterface(); - /**@name Methods to input a problem */ - //@{ - virtual void readAmplNlFile(char **& argv, Ipopt::SmartPtr roptions, - Ipopt::SmartPtr options, - Ipopt::SmartPtr journalist, - std::string* nl_file_content = NULL); - //@} - /** Copy constructor */ - AmplInterface(const AmplInterface &other); - /// Clone - virtual OsiSolverInterface * clone(bool CopyData = true); - - /// Destructor - virtual ~AmplInterface(); - - - /** Fast access to AmplTMINLP */ - const AmplTMINLP * amplModel() const - { - return GetRawPtr(amplTminlp_); - } - /** To set some application specific defaults. */ - virtual void setAppDefaultOptions(Ipopt::SmartPtr Options); - - protected: - /** Read variables and row names in .col and .row files.*/ - void readNames() ; - - /** TMINLP problem (the original problem usually an AmplTMINLP).*/ - Ipopt::SmartPtr amplTminlp_; - - private: - /** Write the ampl solution file or write a bonmin one?*/ - int writeAmplSolFile_; - }; -} -#endif -- cgit