diff options
author | Harpreet | 2016-09-03 00:34:27 +0530 |
---|---|---|
committer | Harpreet | 2016-09-03 00:34:27 +0530 |
commit | 4b64cf486f5c999fd8167758cae27839f3b50848 (patch) | |
tree | d9d06639fb7fa61aef59be0363655e4747105ec7 /build/Bonmin/include/coin/CbcConsequence.hpp | |
parent | d19794fb80a271a4c885ed90f97cfc12baa012f2 (diff) | |
download | FOSSEE-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/CbcConsequence.hpp')
-rw-r--r-- | build/Bonmin/include/coin/CbcConsequence.hpp | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/build/Bonmin/include/coin/CbcConsequence.hpp b/build/Bonmin/include/coin/CbcConsequence.hpp deleted file mode 100644 index f64a8bc..0000000 --- a/build/Bonmin/include/coin/CbcConsequence.hpp +++ /dev/null @@ -1,49 +0,0 @@ -// $Id: CbcConsequence.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/12/2009 carved from CbcBranchBase - -#ifndef CbcConsequence_H -#define CbcConsequence_H - -class OsiSolverInterface; - -/** Abstract base class for consequent bounds. - When a variable is branched on it normally interacts with other variables by - means of equations. There are cases where we want to step outside LP and do something - more directly e.g. fix bounds. This class is for that. - - At present it need not be virtual as only instance is CbcFixVariable, but ... - - */ - -class CbcConsequence { - -public: - - // Default Constructor - CbcConsequence (); - - // Copy constructor - CbcConsequence ( const CbcConsequence & rhs); - - // Assignment operator - CbcConsequence & operator=( const CbcConsequence & rhs); - - /// Clone - virtual CbcConsequence * clone() const = 0; - - /// Destructor - virtual ~CbcConsequence (); - - /** Apply to an LP solver. Action depends on state - */ - virtual void applyToSolver(OsiSolverInterface * solver, int state) const = 0; - -protected: -}; - -#endif - |