This commit is contained in:
JQSakaJoo
2024-10-11 16:18:34 +05:00
parent f9f2726bc4
commit c192c7bcf4
10 changed files with 13 additions and 12 deletions
Binary file not shown.
@@ -313,7 +313,7 @@ class C_AO_TSEA : public C_AO
C_AO_TSEA ()
{
ao_name = "TSEA";
ao_desc = "Turtle Shell Evolution Algorithm";
ao_desc = "Turtle Shell Evolution Algorithm (joo)";
ao_link = "https://www.mql5.com/ru/articles/14789";
popSize = 100; //population size
@@ -51,17 +51,17 @@
<th>Full Name</th>
</tr>
<tr><td>ANS</td><td><a href="https://www.mql5.com/ru/articles/15049" target="_blank">across neighbourhood search</a></td></tr>
<tr><td>CLA</td><td><a href="https://www.mql5.com/ru/articles/14878" target="_blank">code lock algorithm</a></td></tr>
<tr><td>CLA</td><td><a href="https://www.mql5.com/ru/articles/14878" target="_blank">code lock algorithm (joo)</a></td></tr>
<tr><td>AMOm</td><td><a href="https://www.mql5.com/ru/articles/15543" target="_blank">animal migration optimization M</a></td></tr>
<tr><td>(P+O)ES</td><td><a href="https://www.mql5.com/ru/articles/13923" target="_blank">(P+O) evolution strategies</a></td></tr>
<tr><td>CTA</td><td><a href="https://www.mql5.com/ru/articles/14841" target="_blank">comet tail algorithm</a></td></tr>
<tr><td>CTA</td><td><a href="https://www.mql5.com/ru/articles/14841" target="_blank">comet tail algorithm (joo)</a></td></tr>
<tr><td>SDSm</td><td><a href="https://www.mql5.com/ru/articles/13540" target="_blank">stochastic diffusion search M</a></td></tr>
<tr><td>AAm</td><td><a href="https://www.mql5.com/ru/articles/15782" target="_blank">archery algorithm M</a></td></tr>
<tr><td>ESG</td><td><a href="https://www.mql5.com/ru/articles/14136" target="_blank">evolution of social groups</a></td></tr>
<tr><td>SIA</td><td><a href="https://www.mql5.com/ru/articles/13870" target="_blank">simulated isotropic annealing</a></td></tr>
<tr><td>ESG</td><td><a href="https://www.mql5.com/ru/articles/14136" target="_blank">evolution of social groups (joo)</a></td></tr>
<tr><td>SIA</td><td><a href="https://www.mql5.com/ru/articles/13870" target="_blank">simulated isotropic annealing (joo)</a></td></tr>
<tr><td>ACS</td><td><a href="https://www.mql5.com/ru/articles/15004" target="_blank">artificial cooperative search</a></td></tr>
<tr><td>ASO</td><td><a href="https://www.mql5.com/ru/articles/15511" target="_blank">anarchy society optimization</a></td></tr>
<tr><td>TSEA</td><td><a href="https://www.mql5.com/ru/articles/14789" target="_blank">turtle shell evolution algorithm</a></td></tr>
<tr><td>TSEA</td><td><a href="https://www.mql5.com/ru/articles/14789" target="_blank">turtle shell evolution algorithm (joo)</a></td></tr>
<tr><td>DE</td><td><a href="https://www.mql5.com/ru/articles/13781" target="_blank">differential evolution</a></td></tr>
<tr><td>CRO</td><td><a href="https://www.mql5.com/ru/articles/15080" target="_blank">chemical reaction optimisation</a></td></tr>
<tr><td>BSA</td><td><a href="https://www.mql5.com/ru/articles/14491" target="_blank">bird swarm algorithm</a></td></tr>
@@ -74,6 +74,7 @@
<tr><td>BSO</td><td><a href="https://www.mql5.com/ru/articles/14707" target="_blank">brain storm optimization</a></td></tr>
<tr><td>WOAm</td><td><a href="https://www.mql5.com/ru/articles/14414" target="_blank">wale optimization algorithm M</a></td></tr>
<tr><td>AEFA</td><td><a href="https://www.mql5.com/ru/articles/15162" target="_blank">artificial electric field algorithm</a></td></tr>
<tr><td>AEO</td><td><a href="https://www.mql5.com/ru/articles/16058" target="_blank">artificial ecosystem-based optimization algorithm</a></td></tr>
<tr><td>ACOm</td><td><a href="https://www.mql5.com/ru/articles/11602" target="_blank">ant colony optimization M</a></td></tr>
<tr><td>BFO-GA</td><td><a href="https://www.mql5.com/ru/articles/14011" target="_blank">bacterial foraging optimization - genetic algorithm</a></td></tr>
<tr><td>ABHA</td><td><a href="https://www.mql5.com/ru/articles/15347" target="_blank">artificial bee hive algorithm</a></td></tr>
Binary file not shown.
+6 -6
View File
@@ -1,18 +1,18 @@
https://t.me/+vazsAAcney4zYmZi
A list of implemented optimization algorithms:
A list of implemented optimization algorithms (M - is a modified improved version, joo - is an algorithm of my development):
ANS (across neighbourhood search)
CLA (code lock algorithm)
CLA (code lock algorithm, joo)
AMOm (animal migration optimization M)
P_O_ES ((P+O) evolution strategies)
CTA (Comet Tail Algorithm)
CTA (Comet Tail Algorithm, joo)
SDSm (stochastic diffusion search M)
AAm (archery algorithm M)
ESG (evolution of social groups)
SIA (simulated isotropic annealing)
ESG (evolution of social groups, joo)
SIA (simulated isotropic annealing, joo)
ACS (artificial cooperative search)
ASO (anarchy society optimization)
TSEA (turtle shell evolution algorithm)
TSEA (turtle shell evolution algorithm, joo)
DE (differential evolution)
CRO (chemical reaction optimisation)
BSA (bird swarm algorithm)