CbcHeuristicRandRound.hpp
Go to the documentation of this file.
1 /* $Id: CbcHeuristicRandRound.hpp 1173 2009-06-04 09:44:10Z forrest $ */
2 // Copyright (C) 2008, International Business Machines
3 // Corporation and others. All Rights Reserved.
4 #ifndef CbcHeuristicRandRound_H
5 #define CbcHeuristicRandRound_H
6 
7 #include "CbcHeuristic.hpp"
11 class CbcHeuristicRandRound : public CbcHeuristic {
12 public:
13 
14  // Default Constructor
16 
17  /* Constructor with model - assumed before cuts
18  Initial version does not do Lps
19  */
21 
22  // Copy constructor
24 
25  // Destructor
27 
29  virtual CbcHeuristic * clone() const;
30 
33 
35  virtual void generateCpp( FILE * fp) ;
36 
38  virtual void resetModel(CbcModel * model);
39 
41  virtual void setModel(CbcModel * model);
42 
48  virtual int solution(double & objectiveValue,
49  double * newSolution);
50 
51 protected:
52 };
53 
54 
55 #endif
56