Heuristic base class. More...
#include <BlisHeuristic.h>
Public Member Functions | |
BlisHeuristic () | |
Default Constructor. | |
BlisHeuristic (BlisModel *model, const char *name, BlisHeurStrategy strategy, int heurCallFrequency) | |
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 (BlisHeurStrategy strategy) |
Get/set strategy. | |
virtual BlisHeurStrategy | strategy () const |
Get/set strategy. | |
virtual void | setHeurCallFrequency (int freq) |
Get/set call frequency. | |
virtual int | heurCallFrequency () const |
Get/set strategy. | |
virtual BlisHeuristic * | clone () const |
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 bool | 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 | |
const char * | name () const |
return name of generator. | |
void | addNumSolutions (int num=1) |
Record number of solutions found. | |
int | numSolutions () const |
Number of solutions found. | |
void | addTime (double t=0.0) |
Record Cpu time used. | |
double | time () const |
Cpu time used. | |
void | addCalls (int c=1) |
Record number of times called. | |
int | calls () const |
Number of times called. | |
int | noSolCalls () const |
Number called and no cons found. | |
void | addNoSolCalls (int n=1) |
Increase the number of no cons called. | |
Protected Attributes | |
BlisModel * | model_ |
Pointer to the model. | |
char * | name_ |
Heuristics name. | |
BlisHeurStrategy | strategy_ |
When to call findSolution() routine. | |
int | heurCallFrequency_ |
The frequency with which to call the heuristic. | |
int | numSolutions_ |
Number of solutions found. | |
double | time_ |
Used CPU/User time. | |
int | calls_ |
The times of calling this heuristic. | |
int | noSolsCalls_ |
The times of calling this heuristic and no solutions found. | |
Private Member Functions | |
BlisHeuristic & | operator= (const BlisHeuristic &rhs) |
Illegal Assignment operator. |
Heuristic base class.
Definition at line 48 of file BlisHeuristic.h.
BlisHeuristic::BlisHeuristic | ( | ) | [inline] |
Default Constructor.
Definition at line 90 of file BlisHeuristic.h.
BlisHeuristic::BlisHeuristic | ( | BlisModel * | model, |
const char * | name, | ||
BlisHeurStrategy | strategy, | ||
int | heurCallFrequency | ||
) | [inline] |
Useful constructor.
Definition at line 102 of file BlisHeuristic.h.
virtual BlisHeuristic::~BlisHeuristic | ( | ) | [inline, virtual] |
Distructor.
Definition at line 120 of file BlisHeuristic.h.
BlisHeuristic::BlisHeuristic | ( | const BlisHeuristic & | rhs | ) | [inline] |
Copy constructor.
Definition at line 123 of file BlisHeuristic.h.
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 135 of file BlisHeuristic.h.
virtual void BlisHeuristic::setStrategy | ( | BlisHeurStrategy | strategy | ) | [inline, virtual] |
Get/set strategy.
Definition at line 139 of file BlisHeuristic.h.
virtual BlisHeurStrategy BlisHeuristic::strategy | ( | ) | const [inline, virtual] |
Get/set strategy.
Definition at line 140 of file BlisHeuristic.h.
virtual void BlisHeuristic::setHeurCallFrequency | ( | int | freq | ) | [inline, virtual] |
Get/set call frequency.
Definition at line 145 of file BlisHeuristic.h.
virtual int BlisHeuristic::heurCallFrequency | ( | ) | const [inline, virtual] |
Get/set strategy.
Definition at line 146 of file BlisHeuristic.h.
virtual BlisHeuristic* BlisHeuristic::clone | ( | ) | const [inline, 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 VrpHeurTSP, and BlisHeurRound.
virtual bool 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 172 of file BlisHeuristic.h.
const char* BlisHeuristic::name | ( | ) | const [inline] |
return name of generator.
Definition at line 177 of file BlisHeuristic.h.
void BlisHeuristic::addNumSolutions | ( | int | num = 1 | ) | [inline] |
Record number of solutions found.
Definition at line 180 of file BlisHeuristic.h.
int BlisHeuristic::numSolutions | ( | ) | const [inline] |
Number of solutions found.
Definition at line 183 of file BlisHeuristic.h.
void BlisHeuristic::addTime | ( | double | t = 0.0 | ) | [inline] |
Record Cpu time used.
Definition at line 186 of file BlisHeuristic.h.
double BlisHeuristic::time | ( | ) | const [inline] |
Cpu time used.
Definition at line 189 of file BlisHeuristic.h.
void BlisHeuristic::addCalls | ( | int | c = 1 | ) | [inline] |
Record number of times called.
Definition at line 192 of file BlisHeuristic.h.
int BlisHeuristic::calls | ( | ) | const [inline] |
Number of times called.
Definition at line 195 of file BlisHeuristic.h.
int BlisHeuristic::noSolCalls | ( | ) | const [inline] |
Number called and no cons found.
Definition at line 198 of file BlisHeuristic.h.
void BlisHeuristic::addNoSolCalls | ( | int | n = 1 | ) | [inline] |
Increase the number of no cons called.
Definition at line 201 of file BlisHeuristic.h.
BlisModel* BlisHeuristic::model_ [protected] |
Pointer to the model.
Definition at line 58 of file BlisHeuristic.h.
char* BlisHeuristic::name_ [protected] |
Heuristics name.
Definition at line 61 of file BlisHeuristic.h.
BlisHeurStrategy BlisHeuristic::strategy_ [protected] |
When to call findSolution() routine.
BlisHeurStrategyNone: disable BlisHeurStrategyRoot: just root BlisHeurStrategyAuto: automatically decided by BLIS BlisHeurStrategyPeriodic: every 't' nodes BlisHeurStrategyBeforeRoot: before solving first LP
Definition at line 70 of file BlisHeuristic.h.
int BlisHeuristic::heurCallFrequency_ [protected] |
The frequency with which to call the heuristic.
Definition at line 73 of file BlisHeuristic.h.
int BlisHeuristic::numSolutions_ [protected] |
Number of solutions found.
Definition at line 76 of file BlisHeuristic.h.
double BlisHeuristic::time_ [protected] |
Used CPU/User time.
Definition at line 79 of file BlisHeuristic.h.
int BlisHeuristic::calls_ [protected] |
The times of calling this heuristic.
Definition at line 82 of file BlisHeuristic.h.
int BlisHeuristic::noSolsCalls_ [protected] |
The times of calling this heuristic and no solutions found.
Definition at line 85 of file BlisHeuristic.h.