ECF 1.5
SelBestOp.h
1#ifndef SELBESTOP_H_
2#define SELBESTOP_H_
3
4#include "SelectionOperator.h"
5
11public:
12 bool initialize(StateP);
13 IndividualP select(const std::vector<IndividualP>&);
14};
15
16typedef boost::shared_ptr<SelBestOp> SelBestOpP;
17
18#endif /* SELBESTOP_H_ */
19
Best individual selection operator.
Definition: SelBestOp.h:10
bool initialize(StateP)
Selection operator initialization. Must be called before individual selection.
Definition: SelBestOp.cpp:4
IndividualP select(const std::vector< IndividualP > &)
Select one individual from a set.
Definition: SelBestOp.cpp:11
Selection operator base class.