Skip to content

Commit

Permalink
Merge pull request #69 from EMI-Group/dev2-lzy
Browse files Browse the repository at this point in the history
Add t-DEA, SRA and BCE-IBEA algorithms
  • Loading branch information
BillHuang2001 authored Aug 22, 2023
2 parents 346991b + 753da24 commit 8aecff0
Show file tree
Hide file tree
Showing 37 changed files with 1,208 additions and 251 deletions.
6 changes: 6 additions & 0 deletions docs/source/api/algorithms/mo/bce_ibea.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
=======
BCEIBEA
=======

.. autoclass:: evox.algorithms.BCEIBEA
:members:
6 changes: 6 additions & 0 deletions docs/source/api/algorithms/mo/bige.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
====
BiGE
====

.. autoclass:: evox.algorithms.BiGE
:members:
6 changes: 6 additions & 0 deletions docs/source/api/algorithms/mo/eagmoead.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
==========
EAG-MOEA/D
==========

.. autoclass:: evox.algorithms.EAGMOEAD
:members:
6 changes: 6 additions & 0 deletions docs/source/api/algorithms/mo/gde3
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
====
GDE3
====

.. autoclass:: evox.algorithms.GDE3
:members:
6 changes: 6 additions & 0 deletions docs/source/api/algorithms/mo/hype.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
=====
HypE
=====

.. autoclass:: evox.algorithms.HypE
:members:
13 changes: 12 additions & 1 deletion docs/source/api/algorithms/mo/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,19 @@ Multi-objective
.. toctree::
:maxdepth: 1

bce_ibea
bige
eagmoead
gde3
hype
ibea
knea
moead
moeaddra
moeadm2m
nsga2
nsga3
rvea
rvea
spea2
sra
tdea
6 changes: 6 additions & 0 deletions docs/source/api/algorithms/mo/knea.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
====
KnEA
====

.. autoclass:: evox.algorithms.KnEA
:members:
6 changes: 6 additions & 0 deletions docs/source/api/algorithms/mo/moeaddra.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
==========
MOEA/D-DRA
==========

.. autoclass:: evox.algorithms.MOEADDRA
:members:
6 changes: 6 additions & 0 deletions docs/source/api/algorithms/mo/moeadm2m.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
==========
MOEA/D-M2M
==========

.. autoclass:: evox.algorithms.MOEADM2M
:members:
6 changes: 6 additions & 0 deletions docs/source/api/algorithms/mo/spea2.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
=====
SPEA2
=====

.. autoclass:: evox.algorithms.SPEA2
:members:
6 changes: 6 additions & 0 deletions docs/source/api/algorithms/mo/sra.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
===
SRA
===

.. autoclass:: evox.algorithms.SRA
:members:
6 changes: 6 additions & 0 deletions docs/source/api/algorithms/mo/tdea.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
====
tDEA
====

.. autoclass:: evox.algorithms.tDEA
:members:
5 changes: 4 additions & 1 deletion src/evox/algorithms/mo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,7 @@
from .moeadm2m import MOEADM2M
from .knea import KnEA
from .bige import BiGE
from .gde3 import GDE3
from .gde3 import GDE3
from .sra import SRA
from .tdea import TDEA
from .bce_ibea import BCEIBEA
Loading

0 comments on commit 8aecff0

Please sign in to comment.