1 | /* $Id: CbcHeuristicDiveVectorLength.hpp 1899 2013-04-09 18:12:08Z forrest $ */ |
---|
2 | // Copyright (C) 2008, International Business Machines |
---|
3 | // Corporation and others. All Rights Reserved. |
---|
4 | // This code is licensed under the terms of the Eclipse Public License (EPL). |
---|
5 | |
---|
6 | #ifndef CbcHeuristicDiveVectorLength_H |
---|
7 | #define CbcHeuristicDiveVectorLength_H |
---|
8 | |
---|
9 | #include "CbcHeuristicDive.hpp" |
---|
10 | |
---|
11 | /** DiveVectorLength class |
---|
12 | */ |
---|
13 | |
---|
14 | class CbcHeuristicDiveVectorLength : public CbcHeuristicDive { |
---|
15 | public: |
---|
16 | |
---|
17 | // Default Constructor |
---|
18 | CbcHeuristicDiveVectorLength (); |
---|
19 | |
---|
20 | // Constructor with model - assumed before cuts |
---|
21 | CbcHeuristicDiveVectorLength (CbcModel & model); |
---|
22 | |
---|
23 | // Copy constructor |
---|
24 | CbcHeuristicDiveVectorLength ( const CbcHeuristicDiveVectorLength &); |
---|
25 | |
---|
26 | // Destructor |
---|
27 | ~CbcHeuristicDiveVectorLength (); |
---|
28 | |
---|
29 | /// Clone |
---|
30 | virtual CbcHeuristicDiveVectorLength * clone() const; |
---|
31 | |
---|
32 | /// Assignment operator |
---|
33 | CbcHeuristicDiveVectorLength & operator=(const CbcHeuristicDiveVectorLength& rhs); |
---|
34 | |
---|
35 | /// Create C++ lines to get to current state |
---|
36 | virtual void generateCpp( FILE * fp) ; |
---|
37 | |
---|
38 | /// Selects the next variable to branch on |
---|
39 | /** Returns true if all the fractional variables can be trivially |
---|
40 | rounded. Returns false, if there is at least one fractional variable |
---|
41 | that is not trivially roundable. In this case, the bestColumn |
---|
42 | returned will not be trivially roundable. |
---|
43 | */ |
---|
44 | virtual bool selectVariableToBranch(OsiSolverInterface* solver, |
---|
45 | const double* newSolution, |
---|
46 | int& bestColumn, |
---|
47 | int& bestRound); |
---|
48 | |
---|
49 | }; |
---|
50 | |
---|
51 | #endif |
---|
52 | |
---|