Cbc  2.10.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ClpEventHandler.hpp
Go to the documentation of this file.
1 /* $Id: ClpEventHandler.hpp 2385 2019-01-06 19:43:06Z unxusr $ */
2 // Copyright (C) 2004, 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 ClpEventHandler_H
7 #define ClpEventHandler_H
8 
9 #include "ClpSimplex.hpp"
28 
29 public:
34  enum Event {
35  endOfIteration = 100, // used to set secondary status
36  endOfFactorization, // after gutsOfSolution etc
38  node, // for Cbc
39  treeStatus, // for Cbc
40  solution, // for Cbc
41  theta, // hit in parametrics
42  pivotRow, // used to choose pivot row
43  presolveStart, // ClpSolve presolve start
44  presolveSize, // sees if ClpSolve presolve too big or too small
45  presolveInfeasible, // ClpSolve presolve infeasible
46  presolveBeforeSolve, // ClpSolve presolve before solve
47  presolveAfterFirstSolve, // ClpSolve presolve after solve
48  presolveAfterSolve, // ClpSolve presolve after solve
49  presolveEnd, // ClpSolve presolve end
50  goodFactorization, // before gutsOfSolution
51  complicatedPivotIn, // in modifyCoefficients
52  noCandidateInPrimal, // tentative end
53  looksEndInPrimal, // About to declare victory (or defeat)
54  endInPrimal, // Victory (or defeat)
57  complicatedPivotOut, // in modifyCoefficients
58  noCandidateInDual, // tentative end
59  looksEndInDual, // About to declare victory (or defeat)
60  endInDual, // Victory (or defeat)
75  startOfCrossover, // in Idiot
76  noTheta // At end (because no pivot)
77  };
88  virtual int event(Event whichEvent);
92  virtual int eventWithInfo(Event whichEvent, void *info);
94 
99  ClpEventHandler(ClpSimplex *model = NULL);
101  virtual ~ClpEventHandler();
102  // Copy
104  // Assignment
107  virtual ClpEventHandler *clone() const;
108 
110 
115  void setSimplex(ClpSimplex *model);
117  inline ClpSimplex *simplex() const
118  {
119  return model_;
120  }
122 
123 protected:
130 };
139 
140 public:
144  virtual void intoSimplex() = 0;
147  virtual bool check() const = 0;
149  virtual void saveInfo() = 0;
151  virtual int typeOfDisaster();
153 
158  ClpDisasterHandler(ClpSimplex *model = NULL);
160  virtual ~ClpDisasterHandler();
161  // Copy
163  // Assignment
166  virtual ClpDisasterHandler *clone() const = 0;
167 
169 
174  void setSimplex(ClpSimplex *model);
176  inline ClpSimplex *simplex() const
177  {
178  return model_;
179  }
181 
182 protected:
189 };
190 #endif
191 
192 /* vi: softtabstop=2 shiftwidth=2 expandtab tabstop=2
193 */
ClpEventHandler(ClpSimplex *model=NULL)
Default constructor.
Event
enums for what sort of event.
ClpEventHandler & operator=(const ClpEventHandler &)
Base class for Clp disaster handling.
virtual ClpEventHandler * clone() const
Clone.
virtual ~ClpDisasterHandler()
Destructor.
virtual int typeOfDisaster()
Type of disaster 0 can fix, 1 abort.
ClpDisasterHandler(ClpSimplex *model=NULL)
Default constructor.
ClpSimplex * model_
Pointer to simplex.
virtual int event(Event whichEvent)
This can do whatever it likes.
This solves LPs using the simplex method.
Definition: ClpSimplex.hpp:106
void setSimplex(ClpSimplex *model)
set model.
virtual bool check() const =0
Checks if disaster.
virtual ~ClpEventHandler()
Destructor.
virtual void saveInfo()=0
saves information for next attempt
Base class for Clp event handling.
void setSimplex(ClpSimplex *model)
set model.
ClpSimplex * simplex() const
Get model.
ClpSimplex * simplex() const
Get model.
ClpDisasterHandler & operator=(const ClpDisasterHandler &)
virtual void intoSimplex()=0
Into simplex.
virtual ClpDisasterHandler * clone() const =0
Clone.
virtual int eventWithInfo(Event whichEvent, void *info)
This can do whatever it likes.
ClpSimplex * model_
Pointer to simplex.