CSMOn
Convergence Stabilization Modeling operating in Online mode
|
The interface that the search methods must to implement. More...
#include <ISearch.hpp>
Public Member Functions | |
virtual void | startup ()=0 |
Startup the search method. | |
virtual void | next (int M)=0 |
Obtain the next improvement. More... | |
virtual int | getBestPos (double *_x)=0 |
Get the best result obtained up to the moment. More... | |
virtual int | getNEvals ()=0 |
Get the number of fitness function evaluations performed up to the moment. More... | |
virtual double | getFitness ()=0 |
Get the best fitness value found up to the moment. More... | |
The interface that the search methods must to implement.
Definition at line 40 of file ISearch.hpp.
|
pure virtual |
Get the best result obtained up to the moment.
_x | A pointer to store the positions of the best result. |
Implemented in PSO.
|
pure virtual |
Get the best fitness value found up to the moment.
Implemented in PSO.
|
pure virtual |
Get the number of fitness function evaluations performed up to the moment.
Implemented in PSO.
|
pure virtual |
Obtain the next improvement.
M | The maximum number of evaluations allowed. |
Implemented in PSO.