|
1 | 1 | import numpy as np |
2 | 2 | import pytest |
3 | 3 |
|
| 4 | +from pymoo.algorithms.moo.age import AGEMOEA |
| 5 | +from pymoo.algorithms.moo.age2 import AGEMOEA2 |
4 | 6 | from pymoo.algorithms.moo.cmopso import CMOPSO |
| 7 | +from pymoo.algorithms.moo.ctaea import CTAEA |
| 8 | +from pymoo.algorithms.moo.dnsga2 import DNSGA2 |
| 9 | +from pymoo.algorithms.moo.kgb import KGB |
| 10 | +from pymoo.algorithms.moo.moead import MOEAD |
| 11 | +from pymoo.algorithms.moo.moead import ParallelMOEAD |
5 | 12 | from pymoo.algorithms.moo.mopso_cd import MOPSO_CD |
6 | 13 | # Multi-objective algorithms |
7 | 14 | from pymoo.algorithms.moo.nsga2 import NSGA2 |
8 | | -from pymoo.algorithms.moo.rnsga2 import RNSGA2 |
9 | 15 | from pymoo.algorithms.moo.nsga3 import NSGA3 |
10 | | -from pymoo.algorithms.moo.unsga3 import UNSGA3 |
| 16 | +from pymoo.algorithms.moo.pinsga2 import AutomatedDM |
| 17 | +from pymoo.algorithms.moo.pinsga2 import PINSGA2 |
| 18 | +from pymoo.algorithms.moo.rnsga2 import RNSGA2 |
11 | 19 | from pymoo.algorithms.moo.rnsga3 import RNSGA3 |
12 | | -from pymoo.algorithms.moo.moead import MOEAD |
13 | | -from pymoo.algorithms.moo.age import AGEMOEA |
14 | | -from pymoo.algorithms.moo.age2 import AGEMOEA2 |
15 | | -from pymoo.algorithms.moo.ctaea import CTAEA |
16 | | -from pymoo.algorithms.moo.sms import SMSEMOA |
17 | 20 | from pymoo.algorithms.moo.rvea import RVEA |
18 | | -from pymoo.algorithms.moo.kgb import KGB |
| 21 | +from pymoo.algorithms.moo.sms import SMSEMOA |
19 | 22 | from pymoo.algorithms.moo.spea2 import SPEA2 |
20 | | -from pymoo.algorithms.moo.dnsga2 import DNSGA2 |
21 | | -from pymoo.algorithms.moo.pinsga2 import PINSGA2 |
22 | | -from pymoo.algorithms.moo.moead import ParallelMOEAD |
23 | | - |
| 23 | +from pymoo.algorithms.moo.unsga3 import UNSGA3 |
24 | 24 | from pymoo.optimize import minimize |
25 | 25 | from pymoo.problems.multi import ZDT1 |
26 | | -from pymoo.util.ref_dirs import get_reference_directions |
27 | | -from pymoo.algorithms.moo.pinsga2 import AutomatedDM |
28 | 26 |
|
29 | 27 |
|
30 | 28 | # Simple deterministic automated decision maker for testing |
|
0 commit comments