Skip to content

Commit 978bd61

Browse files
authored
Update Description.md
1 parent 4684e19 commit 978bd61

File tree

1 file changed

+51
-7
lines changed

1 file changed

+51
-7
lines changed

Description.md

Lines changed: 51 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ opts.f = 3; % control parameter
9797
opts.l = 2; % control parameter
9898
```
9999

100-
101100
## Equilibrium Optimizer (EO)
102101
* EO contains 3 extra parameters
103102
```code
@@ -136,19 +135,64 @@ opts.G0 = 100; % initial gravitational constant
136135
opts.alpha = 20; % cosntant
137136
```
138137

138+
## Harmony Search (HS)
139+
* HS contains 3 extra parameters
140+
```code
141+
opts.PAR = 0.05; % pitch adjusting rate
142+
opts.HMCR = 0.7; % harmony memory considering rate
143+
opts.bw = 0.2; % bandwidth
144+
```
139145

146+
## Henry Gas Solubility Optimization (HGSO)
147+
* HGSO contains 7 extra parameters
148+
```code
149+
opts.Nc = 2; % number of gas types / cluster
150+
opts.K = 1; % constant
151+
opts.alpha = 1; % influence of other gas
152+
opts.beta = 1; % constant
153+
opts.L1 = 5E-3; % constant
154+
opts.L2 = 100; % constant
155+
opts.L3 = 1E-2; % constant
156+
```
140157

158+
## Human Learning Optimization (HLO)
159+
* HLO contains 2 extra parameters
160+
```code
161+
opts.pi = 0.85; % probability of individual learning
162+
opts.pr = 0.1; % probability of exploration learning
163+
```
141164

165+
## Manta Ray Foraging Optimization (MRFO)
166+
* MRFO contains 1 extra parameter
167+
```code
168+
opts.S = 2; % somersault factor
169+
```
142170

171+
## Marine Predators Algorithm (MPA)
172+
* MPA contains 2 extra parameters
173+
```code
174+
opts.P = 0.5; % constant
175+
opts.FADs = 0.2; % fish aggregating devices effect
176+
```
143177

144178

179+
## Monarch Butterfly Optimization (MBO)
180+
* MBO contains 5 extra parameters
181+
```code
182+
opts.peri = 1.2; % migration period
183+
opts.p = 5/12; % ratio
184+
opts.Smax = 1; % maximum step
185+
opts.BAR = 5/12; % butterfly adjusting rate
186+
opts.N1 = 4; % number of butterflies in land 1
187+
```
145188

146-
147-
148-
149-
150-
151-
189+
## Multi-Verse Optimizer (MVO)
190+
* MVO contains 3 extra parameters
191+
```code
192+
opts.p = 6; % control TDR
193+
opts.Wmax = 1; % maximum WEP
194+
opts.Wmin = 0.2; % minimum WEP
195+
```
152196

153197

154198

0 commit comments

Comments
 (0)