Skip to content

Feature new DE algorithms #341

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

Open
wants to merge 26 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
98c3551
Create new DE based algorithms
mooscaliaproject Oct 17, 2022
b3483e9
Merge branch 'feature/crowding_metrics' into feature/de_algorithms
mooscaliaproject Oct 17, 2022
0ab60bd
Included GDE3PCD as a class
mooscaliaproject Oct 17, 2022
0b0ef11
Merge branch 'develop' into feature/de_algorithms
mooscaliaproject Nov 1, 2022
69b92a9
Fix exp crossover for new DE
mooscaliaproject Nov 1, 2022
a0616bc
Include tests for soo DE
mooscaliaproject Nov 1, 2022
cae48e2
Fix test DE repair
mooscaliaproject Nov 1, 2022
cebc0b6
Include tests MODE
mooscaliaproject Nov 1, 2022
12737a0
Refactor DEX
mooscaliaproject Nov 1, 2022
cf99048
Fix new DEX
mooscaliaproject Nov 1, 2022
e5d2733
Revert DEX arguments
mooscaliaproject Nov 1, 2022
c57f478
Remove DEX from test_crossover
mooscaliaproject Nov 1, 2022
25eea6d
Fix DEX do
mooscaliaproject Nov 1, 2022
c8b1431
Refactor DEX and DEM to match SBX format
mooscaliaproject Nov 1, 2022
fbe12da
Fix DE de_repair on mating
mooscaliaproject Nov 1, 2022
edbaec9
Refactor infill of DE new class with inheritance
mooscaliaproject Nov 2, 2022
8fdd853
Fix DE algorithms with new mating
mooscaliaproject Nov 2, 2022
4646879
Fix kwargs passed to DE variant
mooscaliaproject Nov 2, 2022
884cb02
Style comments
mooscaliaproject Nov 2, 2022
f2c3d50
Fix eliminate duplicates None
mooscaliaproject Nov 2, 2022
c8d215c
Restore sampling LHS on NSDE
mooscaliaproject Nov 2, 2022
e5baab7
Style sampling of NSDER
mooscaliaproject Nov 2, 2022
977f758
Fix test DE GDE3 assertion
mooscaliaproject Nov 2, 2022
3536c23
Fix sampling on NSDER init
mooscaliaproject Nov 2, 2022
c16481a
Merge branch 'feature/crowding_metrics' into feature/de_algorithms
mooscaliaproject Nov 18, 2022
3cb4f2b
Style code formatting with autopep8
mooscaliaproject Nov 18, 2022
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
Prev Previous commit
Next Next commit
Fix sampling on NSDER init
  • Loading branch information
mooscaliaproject committed Nov 2, 2022
commit 3536c233eb421e592dbaa1b37732c6b0e39d4755
1 change: 0 additions & 1 deletion pymoo/algorithms/moo/nsder.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ def __init__(self,
survival = ReferenceDirectionSurvival(ref_dirs)

super().__init__(pop_size=pop_size,
sampling=sampling,
variant=variant,
CR=CR,
F=F,
Expand Down