@@ -33,7 +33,7 @@ opts.max = 5; % Maximum limits allowed
33
33
``` code
34
34
opts.stepe = 0.05; % control number of sunspot
35
35
opts.ratio = 0.2; % control step
36
- opts.ty = 1; % version 1 or 2
36
+ opts.ty = 1; % version 1 or 2
37
37
```
38
38
39
39
## Atom Search Optimization (ASO)
@@ -186,6 +186,12 @@ opts.BAR = 5/12; % butterfly adjusting rate
186
186
opts.N1 = 4; % number of butterflies in land 1
187
187
```
188
188
189
+ ## Moth Flame Optimization (MFO)
190
+ * MFO contains 1 extra parameter
191
+ ``` code
192
+ opts.b = 1; % constant
193
+ ```
194
+
189
195
## Multi-Verse Optimizer (MVO)
190
196
* MVO contains 3 extra parameters
191
197
``` code
@@ -194,8 +200,71 @@ opts.Wmax = 1; % maximum WEP
194
200
opts.Wmin = 0.2; % minimum WEP
195
201
```
196
202
203
+ ## Particle Swarm Optimization (PSO)
204
+ * PSO contains 3 extra parameters
205
+ ``` code
206
+ opts.c1 = 2; % cognitive factor
207
+ opts.c2 = 2; % social factor
208
+ opts.w = 0.9; % inertia weight
209
+ ```
210
+
211
+ ## Poor And Rich Optimization (PRO)
212
+ * PRO contains 1 extra parameter
213
+ ``` code
214
+ opts.Pmut = 0.06; % mutation probability
215
+ ```
216
+
217
+ ## Satin Bower Bird Optimization (SBO)
218
+ * SBO contains 3 extra parameters
219
+ ``` code
220
+ opts.alpha = 0.94; % constant
221
+ opts.z = 0.02; % constant
222
+ opts.MR = 0.05; % mutation rate
223
+ ```
224
+
225
+ ## Simulated Annealing (SA)
226
+ * SA contains 2 extra parameters
227
+ ``` code
228
+ opts.c = 0.93; % cooling rate
229
+ opts.T0 = 100; % initial temperature
230
+ ```
197
231
232
+ ## Sine Cosine Algorithm (SCA)
233
+ * SCA contains 1 extra parameter
234
+ ``` code
235
+ opts.alpha = 2; % constant
236
+ ```
198
237
238
+ ## Tree Growth Algorithm (TGA)
239
+ * TGA contains 5 extra parameters
240
+ ``` code
241
+ opts.N1 = 3; % size of first group
242
+ opts.N2 = 5; % size of second group
243
+ opts.N4 = 3; % size of fourth group
244
+ opts.theta = 0.8; % tree reduction rate of power
245
+ opts.lambda = 0.5; % control nearest tree
246
+ ```
247
+
248
+ ## Tree Seed Algorithm (TSA)
249
+ * TSA contains 1 extra parameter
250
+ ``` code
251
+ opts.ST = 0.1; % switch probability
252
+ ```
253
+
254
+ ## Weighted Superposition Attraction (WSA)
255
+ * WSA contains 4 extra parameters
256
+ ``` code
257
+ opts.tau = 0.8; % constant
258
+ opts.sl = 0.035; % step length
259
+ opts.phi = 0.001; % constant
260
+ opts.lambda = 0.75; % constant
261
+ ```
262
+
263
+ ## Whale Optimization Algorithm (WOA)
264
+ * WOA contains 1 extra parameter
265
+ ``` code
266
+ opts.b = 1; % constant
267
+ ```
199
268
200
269
201
270
0 commit comments