diff options
author | Harpreet | 2016-09-03 00:36:51 +0530 |
---|---|---|
committer | Harpreet | 2016-09-03 00:36:51 +0530 |
commit | a0d9443af147e949c1e6a01ac24749d12593ec5b (patch) | |
tree | 1a1955c5482ae608fd7f618b06f4ecc6a0d39a23 /thirdparty/linux/include/coin/CbcGeneral.hpp | |
parent | 4b64cf486f5c999fd8167758cae27839f3b50848 (diff) | |
download | FOSSEE-Optim-toolbox-development-a0d9443af147e949c1e6a01ac24749d12593ec5b.tar.gz FOSSEE-Optim-toolbox-development-a0d9443af147e949c1e6a01ac24749d12593ec5b.tar.bz2 FOSSEE-Optim-toolbox-development-a0d9443af147e949c1e6a01ac24749d12593ec5b.zip |
cbcintlinprog added
Diffstat (limited to 'thirdparty/linux/include/coin/CbcGeneral.hpp')
-rw-r--r-- | thirdparty/linux/include/coin/CbcGeneral.hpp | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/thirdparty/linux/include/coin/CbcGeneral.hpp b/thirdparty/linux/include/coin/CbcGeneral.hpp new file mode 100644 index 0000000..19436b3 --- /dev/null +++ b/thirdparty/linux/include/coin/CbcGeneral.hpp @@ -0,0 +1,60 @@ +// $Id: CbcGeneral.hpp 1899 2013-04-09 18:12:08Z stefan $ +// Copyright (C) 2002, International Business Machines +// Corporation and others. All Rights Reserved. +// This code is licensed under the terms of the Eclipse Public License (EPL). + +// Edwin 11/10/2009-- carved out of CbcBranchActual + +#ifndef CbcGeneral_H +#define CbcGeneral_H + +#include "CbcBranchBase.hpp" +/** Define a catch all class. + This will create a list of subproblems +*/ + + +class CbcGeneral : public CbcObject { + +public: + + // Default Constructor + CbcGeneral (); + + /** Useful constructor + Just needs to point to model. + */ + CbcGeneral (CbcModel * model); + + // Copy constructor + CbcGeneral ( const CbcGeneral &); + + /// Clone + virtual CbcObject * clone() const = 0; + + // Assignment operator + CbcGeneral & operator=( const CbcGeneral& rhs); + + // Destructor + ~CbcGeneral (); + + /// Infeasibility - large is 0.5 + virtual double infeasibility(const OsiBranchingInformation * info, + int &preferredWay) const; + + using CbcObject::feasibleRegion ; + /// This looks at solution and sets bounds to contain solution + virtual void feasibleRegion() = 0; + + /// Creates a branching object + virtual CbcBranchingObject * createCbcBranch(OsiSolverInterface * solver, const OsiBranchingInformation * info, int way) ; + + /// Redoes data when sequence numbers change + virtual void redoSequenceEtc(CbcModel * model, int numberColumns, const int * originalColumns) = 0; + +protected: + /// data +}; + +#endif + |