Cbc  2.10.10
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
CbcHeuristicDiveCoefficient.hpp
Go to the documentation of this file.
1 /* $Id$ */
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 CbcHeuristicDiveCoefficient_H
7 #define CbcHeuristicDiveCoefficient_H
8 
9 #include "CbcHeuristicDive.hpp"
10 
15 public:
16  // Default Constructor
18 
19  // Constructor with model - assumed before cuts
21 
22  // Copy constructor
24 
25  // Destructor
27 
29  virtual CbcHeuristicDiveCoefficient *clone() const;
30 
33 
35  virtual void generateCpp(FILE *fp);
36 
38 
43  virtual bool selectVariableToBranch(OsiSolverInterface *solver,
44  const double *newSolution,
45  int &bestColumn,
46  int &bestRound);
47 };
48 
49 #endif
50 
51 /* vi: softtabstop=2 shiftwidth=2 expandtab tabstop=2
52 */
CbcHeuristicDive.hpp
CbcHeuristicDiveCoefficient::operator=
CbcHeuristicDiveCoefficient & operator=(const CbcHeuristicDiveCoefficient &rhs)
Assignment operator.
CbcHeuristicDiveCoefficient::~CbcHeuristicDiveCoefficient
~CbcHeuristicDiveCoefficient()
CbcHeuristicDiveCoefficient::CbcHeuristicDiveCoefficient
CbcHeuristicDiveCoefficient()
CbcModel
Simple Branch and bound class.
Definition: CbcModel.hpp:100
CbcHeuristicDiveCoefficient::selectVariableToBranch
virtual bool selectVariableToBranch(OsiSolverInterface *solver, const double *newSolution, int &bestColumn, int &bestRound)
Selects the next variable to branch on.
CbcHeuristicDiveCoefficient::generateCpp
virtual void generateCpp(FILE *fp)
Create C++ lines to get to current state.
CbcHeuristicDiveCoefficient::clone
virtual CbcHeuristicDiveCoefficient * clone() const
Clone.
CbcHeuristicDive
Dive class.
Definition: CbcHeuristicDive.hpp:20
CbcHeuristicDiveCoefficient
DiveCoefficient class.
Definition: CbcHeuristicDiveCoefficient.hpp:14