diff options
author | Georgey | 2017-07-05 11:40:43 +0530 |
---|---|---|
committer | Georgey | 2017-07-05 11:40:43 +0530 |
commit | 938fef4a37a7b7c61b4b6ff74cb4cfd2f100c427 (patch) | |
tree | b343c0ee5609433c80e0de1db8b6886c9126dc2d /thirdparty/linux/include/coin/CbcHeuristicDiveGuided.hpp | |
parent | 5b72577efe080c5294b32d804e4d26351fef30bc (diff) | |
download | FOSSEE-Optimization-toolbox-938fef4a37a7b7c61b4b6ff74cb4cfd2f100c427.tar.gz FOSSEE-Optimization-toolbox-938fef4a37a7b7c61b4b6ff74cb4cfd2f100c427.tar.bz2 FOSSEE-Optimization-toolbox-938fef4a37a7b7c61b4b6ff74cb4cfd2f100c427.zip |
Added linux shared libraries and header files for int and ecos functions
Diffstat (limited to 'thirdparty/linux/include/coin/CbcHeuristicDiveGuided.hpp')
-rw-r--r-- | thirdparty/linux/include/coin/CbcHeuristicDiveGuided.hpp | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/thirdparty/linux/include/coin/CbcHeuristicDiveGuided.hpp b/thirdparty/linux/include/coin/CbcHeuristicDiveGuided.hpp new file mode 100644 index 0000000..2b369dc --- /dev/null +++ b/thirdparty/linux/include/coin/CbcHeuristicDiveGuided.hpp @@ -0,0 +1,55 @@ +/* $Id: CbcHeuristicDiveGuided.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 CbcHeuristicDiveGuided_H +#define CbcHeuristicDiveGuided_H + +#include "CbcHeuristicDive.hpp" + +/** DiveGuided class + */ + +class CbcHeuristicDiveGuided : public CbcHeuristicDive { +public: + + // Default Constructor + CbcHeuristicDiveGuided (); + + // Constructor with model - assumed before cuts + CbcHeuristicDiveGuided (CbcModel & model); + + // Copy constructor + CbcHeuristicDiveGuided ( const CbcHeuristicDiveGuided &); + + // Destructor + ~CbcHeuristicDiveGuided (); + + /// Clone + virtual CbcHeuristicDiveGuided * clone() const; + + /// Assignment operator + CbcHeuristicDiveGuided & operator=(const CbcHeuristicDiveGuided& rhs); + + /// Create C++ lines to get to current state + virtual void generateCpp( FILE * fp) ; + + /// Tests if the heuristic can run + virtual bool canHeuristicRun(); + + /// Selects the next variable to branch on + /** Returns true if all the fractional variables can be trivially + rounded. Returns false, if there is at least one fractional variable + that is not trivially roundable. In this case, the bestColumn + returned will not be trivially roundable. + */ + virtual bool selectVariableToBranch(OsiSolverInterface* solver, + const double* newSolution, + int& bestColumn, + int& bestRound); + +}; + +#endif + |