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 /newstructure/thirdparty/linux/include/coin/CbcHeuristicPivotAndFix.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 'newstructure/thirdparty/linux/include/coin/CbcHeuristicPivotAndFix.hpp')
-rw-r--r-- | newstructure/thirdparty/linux/include/coin/CbcHeuristicPivotAndFix.hpp | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/newstructure/thirdparty/linux/include/coin/CbcHeuristicPivotAndFix.hpp b/newstructure/thirdparty/linux/include/coin/CbcHeuristicPivotAndFix.hpp new file mode 100644 index 0000000..9a945f6 --- /dev/null +++ b/newstructure/thirdparty/linux/include/coin/CbcHeuristicPivotAndFix.hpp @@ -0,0 +1,58 @@ +/* $Id: CbcHeuristicPivotAndFix.hpp 1899 2013-04-09 18:12:08Z stefan $ */ +// Copyright (C) 2008, International Business Machines +// Corporation and others. All Rights Reserved. +// This code is licensed under the terms of the Eclipse Public License (EPL). + +#ifndef CbcHeuristicPivotAndFix_H +#define CbcHeuristicPivotAndFix_H + +#include "CbcHeuristic.hpp" +/** LocalSearch class + */ + +class CbcHeuristicPivotAndFix : public CbcHeuristic { +public: + + // Default Constructor + CbcHeuristicPivotAndFix (); + + /* Constructor with model - assumed before cuts + Initial version does not do Lps + */ + CbcHeuristicPivotAndFix (CbcModel & model); + + // Copy constructor + CbcHeuristicPivotAndFix ( const CbcHeuristicPivotAndFix &); + + // Destructor + ~CbcHeuristicPivotAndFix (); + + /// Clone + virtual CbcHeuristic * clone() const; + + /// Assignment operator + CbcHeuristicPivotAndFix & operator=(const CbcHeuristicPivotAndFix& rhs); + + /// Create C++ lines to get to current state + virtual void generateCpp( FILE * fp) ; + + /// Resets stuff if model changes + virtual void resetModel(CbcModel * model); + + /// update model (This is needed if cliques update matrix etc) + virtual void setModel(CbcModel * model); + + using CbcHeuristic::solution ; + /** returns 0 if no solution, 1 if valid solution. + Sets solution values if good, sets objective value (only if good) + needs comments + */ + virtual int solution(double & objectiveValue, + double * newSolution); + +protected: +}; + + +#endif + |