Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding AGEMOEA and IGD #399

Merged
merged 31 commits into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
de8cbe5
Initialized agemoea and igd
IWNMWE May 31, 2024
745f741
added SBX and normalization
IWNMWE Jun 1, 2024
5622db0
polynomial mutation and error fixes
IWNMWE Jun 2, 2024
21b084c
Added Survival Score and optimization loop
IWNMWE Jun 11, 2024
5e44e55
fixed typos
IWNMWE Jun 11, 2024
ce6a64c
error fixes
IWNMWE Jun 15, 2024
8969f73
bounds on c1 and c2 added
IWNMWE Jun 16, 2024
9f25ae2
Added agemoea_test
IWNMWE Jun 25, 2024
7ec24a3
removed comments
IWNMWE Jun 26, 2024
1466ee5
Returns final paretoSet
IWNMWE Jun 29, 2024
c0bae8c
style changes
IWNMWE Jul 2, 2024
1bee1cc
style fixes
IWNMWE Jul 2, 2024
2c909bb
resolved clamp error
IWNMWE Jul 3, 2024
3bdfc75
Reviewed changes
IWNMWE Jul 5, 2024
ff72db8
update test params
IWNMWE Jul 8, 2024
4e90dcb
Added documentation
IWNMWE Jul 9, 2024
be5bc43
added more tries to ZDT3
IWNMWE Jul 10, 2024
fb4149e
Documentation changes
IWNMWE Jul 10, 2024
ad9e80f
Updated ensmallen.hpp
IWNMWE Jul 11, 2024
e32ef1b
style fixes
IWNMWE Jul 24, 2024
4095b1f
change in nsga2 documentation
IWNMWE Jul 24, 2024
b4fb3d7
change file path
IWNMWE Jul 24, 2024
6a7f048
Added documentation and style fixes
IWNMWE Jul 26, 2024
762b14e
style fixes
IWNMWE Jul 26, 2024
d9495a9
Fixed nsga2 documentation
IWNMWE Jul 26, 2024
77c6fe4
Added colab link
IWNMWE Jul 26, 2024
af14105
increase re tries for zdt3
IWNMWE Jul 27, 2024
b1b51d2
ZDT3 test population percentage checks
IWNMWE Jul 27, 2024
6db63f3
Documentation changes
IWNMWE Jul 27, 2024
1aea611
Documentation changes
IWNMWE Jul 28, 2024
b87cb77
Remove extra space
IWNMWE Jul 28, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions include/ensmallen.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
#include "ensmallen_bits/utility/arma_traits.hpp"
#include "ensmallen_bits/utility/indicators/epsilon.hpp"
#include "ensmallen_bits/utility/indicators/igd_plus.hpp"
#include "ensmallen_bits/utility/indicators/igd.hpp"

// Contains traits, must be placed before report callback.
#include "ensmallen_bits/function.hpp" // TODO: should move to function/
Expand Down Expand Up @@ -111,6 +112,7 @@
#include "ensmallen_bits/katyusha/katyusha.hpp"
#include "ensmallen_bits/lbfgs/lbfgs.hpp"
#include "ensmallen_bits/lookahead/lookahead.hpp"
#include "ensmallen_bits/age_moea/agemoea.hpp"
#include "ensmallen_bits/moead/moead.hpp"
#include "ensmallen_bits/nsga2/nsga2.hpp"
#include "ensmallen_bits/padam/padam.hpp"
Expand Down
Loading