#include <BlisHeuristic.h>
Inheritance diagram for BlisHeuristic:
Public Member Functions | |
BlisHeuristic () | |
Default Constructor. | |
BlisHeuristic (BlisModel *model, const char *name, int strategy) | |
Useful constructor. | |
virtual | ~BlisHeuristic () |
Distructor. | |
BlisHeuristic (const BlisHeuristic &rhs) | |
Copy constructor. | |
virtual void | setModel (BlisModel *model) |
update model (This is needed if cliques update matrix etc). | |
virtual void | setStrategy (int strategy) |
Get/set strategy. | |
virtual int | strategy () |
Get/set strategy. | |
virtual BlisHeuristic * | clone () const =0 |
Clone a heuristic. | |
virtual bool | searchSolution (double &objectiveValue, double *newSolution)=0 |
returns 0 if no solution, 1 if valid solution with better objective value than one passed in Sets solution values if good, sets objective value This is called after cuts have been added - so can not add cuts | |
virtual int | searchSolution (double &objectiveValue, double *newSolution, OsiCuts &cs) |
returns 0 if no solution, 1 if valid solution, -1 if just returning an estimate of best possible solution with better objective value than one passed in Sets solution values if good, sets objective value (only if nonzero code) This is called at same time as cut generators - so can add cuts Default is do nothing | |
int | numSolutions () |
Number of solutions found. | |
double | time () |
Cpu time used. | |
int | calls () |
Cpu time used. | |
Protected Attributes | |
BlisModel * | model_ |
Pointer to the model. | |
char * | name_ |
Heuristics name. | |
int | strategy_ |
When to call findSolution() routine. | |
int | numSolutions_ |
Number of solutions found. | |
double | time_ |
Used CPU/User time. | |
int | calls_ |
The times of calling this heuristic. | |
Private Member Functions | |
BlisHeuristic & | operator= (const BlisHeuristic &rhs) |
Illegal Assignment operator. |
Definition at line 47 of file BlisHeuristic.h.
BlisHeuristic::BlisHeuristic | ( | ) | [inline] |
Default Constructor.
Definition at line 82 of file BlisHeuristic.h.
References calls_, model_, name_, numSolutions_, strategy_, and time_.
BlisHeuristic::BlisHeuristic | ( | BlisModel * | model, | |
const char * | name, | |||
int | strategy | |||
) | [inline] |
Useful constructor.
Definition at line 92 of file BlisHeuristic.h.
References calls_, model_, name_, numSolutions_, strategy_, and time_.
virtual BlisHeuristic::~BlisHeuristic | ( | ) | [inline, virtual] |
BlisHeuristic::BlisHeuristic | ( | const BlisHeuristic & | rhs | ) | [inline] |
Copy constructor.
Definition at line 110 of file BlisHeuristic.h.
References calls_, model_, name_, numSolutions_, strategy_, and time_.
BlisHeuristic& BlisHeuristic::operator= | ( | const BlisHeuristic & | rhs | ) | [private] |
Illegal Assignment operator.
virtual void BlisHeuristic::setModel | ( | BlisModel * | model | ) | [inline, virtual] |
update model (This is needed if cliques update matrix etc).
Reimplemented in BlisHeurRound.
Definition at line 120 of file BlisHeuristic.h.
References model_.
virtual void BlisHeuristic::setStrategy | ( | int | strategy | ) | [inline, virtual] |
virtual int BlisHeuristic::strategy | ( | ) | [inline, virtual] |
virtual BlisHeuristic* BlisHeuristic::clone | ( | ) | const [pure virtual] |
virtual bool BlisHeuristic::searchSolution | ( | double & | objectiveValue, | |
double * | newSolution | |||
) | [pure virtual] |
returns 0 if no solution, 1 if valid solution with better objective value than one passed in Sets solution values if good, sets objective value This is called after cuts have been added - so can not add cuts
Implemented in BlisHeurRound.
virtual int BlisHeuristic::searchSolution | ( | double & | objectiveValue, | |
double * | newSolution, | |||
OsiCuts & | cs | |||
) | [inline, virtual] |
returns 0 if no solution, 1 if valid solution, -1 if just returning an estimate of best possible solution with better objective value than one passed in Sets solution values if good, sets objective value (only if nonzero code) This is called at same time as cut generators - so can add cuts Default is do nothing
Definition at line 147 of file BlisHeuristic.h.
int BlisHeuristic::numSolutions | ( | ) | [inline] |
Number of solutions found.
Definition at line 152 of file BlisHeuristic.h.
References numSolutions_.
double BlisHeuristic::time | ( | ) | [inline] |
int BlisHeuristic::calls | ( | ) | [inline] |
BlisModel* BlisHeuristic::model_ [protected] |
Pointer to the model.
Definition at line 57 of file BlisHeuristic.h.
Referenced by BlisHeuristic(), and setModel().
char* BlisHeuristic::name_ [protected] |
Heuristics name.
Definition at line 60 of file BlisHeuristic.h.
Referenced by BlisHeuristic(), and ~BlisHeuristic().
int BlisHeuristic::strategy_ [protected] |
When to call findSolution() routine.
-2: disable -1: just root 0: automatically decided by BLIS any positive integer: the node interval between the call
Definition at line 68 of file BlisHeuristic.h.
Referenced by BlisHeuristic(), setStrategy(), and strategy().
int BlisHeuristic::numSolutions_ [protected] |
Number of solutions found.
Definition at line 71 of file BlisHeuristic.h.
Referenced by BlisHeuristic(), and numSolutions().
double BlisHeuristic::time_ [protected] |
Used CPU/User time.
Definition at line 74 of file BlisHeuristic.h.
Referenced by BlisHeuristic(), and time().
int BlisHeuristic::calls_ [protected] |
The times of calling this heuristic.
Definition at line 77 of file BlisHeuristic.h.
Referenced by BlisHeuristic(), and calls().