jMetal / jMetalPy

A framework for single/multi-objective optimization with metaheuristics
https://jmetal.github.io/jMetalPy/index.html
MIT License
501 stars 149 forks source link

Question about updating leaders #22

Closed shambakey1 closed 6 years ago

shambakey1 commented 6 years ago

Hi

Why is each swarm particle added to the leaders group?

Regards

https://github.com/jMetal/jMetalPy/blob/6df9fa2a3a15e556f2bc6e58377781251a741949/jmetal/algorithm/multiobjective/smpso.py#L142

ajnebro commented 6 years ago

The leader archive contains the non-dominated solutions found so far, so every new particle is added to it.

Please, take into account that the implementation of SMPSO is not finished yet.

shambakey1 commented 6 years ago

Thank you