CbcHeuristicRENS.hpp
Go to the documentation of this file.
1 // edwin 12/5/09 carved out of CbcHeuristicRINS
2 #ifndef CbcHeuristicRENS_H
3 #define CbcHeuristicRENS_H
4 
5 #include "CbcHeuristic.hpp"
6 
11 public:
12 
13  // Default Constructor
15 
16  /* Constructor with model - assumed before cuts
17  Initial version does not do Lps
18  */
19  CbcHeuristicRENS (CbcModel & model);
20 
21  // Copy constructor
23 
24  // Destructor
26 
28  virtual CbcHeuristic * clone() const;
29 
30 
33 
35  virtual void resetModel(CbcModel * model);
36 
38  virtual void setModel(CbcModel * model);
39 
46  virtual int solution(double & objectiveValue,
47  double * newSolution);
48 
49 protected:
50  // Data
53 };
54 
55 #endif
56