Added new lesson (6) dedicated to the PSO. Also changed a few things into the PSO-dedicated components (constructors)
This commit is contained in:
parent
4834adbe5f
commit
4ad79a9148
17 changed files with 771 additions and 115 deletions
|
|
@ -111,13 +111,14 @@ private :
|
|||
@param proc First evaluation
|
||||
@param initVelo Initialization of the velocity
|
||||
@param initBest Initialization of the best
|
||||
*/
|
||||
eoPop < POT > & pop;
|
||||
*/
|
||||
eoUF<POT&, void>& proc;
|
||||
eoPopEvalFunc <POT>& procPara;
|
||||
eoVelocityInit < POT > & initVelo;
|
||||
eoParticleBestInit <POT> & initBest;
|
||||
eoPopEvalFunc <POT>& procPara;
|
||||
eoTopology <POT> & topology;
|
||||
eoPop < POT > & pop;
|
||||
|
||||
class eoDummyEval : public eoPopEvalFunc<POT>
|
||||
{
|
||||
public:
|
||||
|
|
|
|||
Reference in a new issue