diff --git a/MQL5/Include/Math/AOs/PopulationAO/#C_AO_enum.mqh b/MQL5/Include/Math/AOs/PopulationAO/#C_AO_enum.mqh index 6c3cce6..978ccb9 100644 Binary files a/MQL5/Include/Math/AOs/PopulationAO/#C_AO_enum.mqh and b/MQL5/Include/Math/AOs/PopulationAO/#C_AO_enum.mqh differ diff --git a/MQL5/Include/Math/AOs/PopulationAO/AO_BSA_BirdSwarmAlgorithm.mqh b/MQL5/Include/Math/AOs/PopulationAO/AO_BSA_BirdSwarmAlgorithm.mqh index e5b689a..aa415ed 100644 --- a/MQL5/Include/Math/AOs/PopulationAO/AO_BSA_BirdSwarmAlgorithm.mqh +++ b/MQL5/Include/Math/AOs/PopulationAO/AO_BSA_BirdSwarmAlgorithm.mqh @@ -117,7 +117,7 @@ class C_AO_BSA : public C_AO bool C_AO_BSA::Init (const double &rangeMinP [], //minimum search range const double &rangeMaxP [], //maximum search range const double &rangeStepP [], //step search - const int epochsP = 0) //number of epochs + const int epochsP = 0) //number of epochs { if (!StandardInit (rangeMinP, rangeMaxP, rangeStepP)) return false; diff --git a/MQL5/Include/Math/AOs/PopulationAO/AO_SIA_SimulatedIsotropicAnnealing.mqh b/MQL5/Include/Math/AOs/PopulationAO/AO_SIA_SimulatedIsotropicAnnealing.mqh new file mode 100644 index 0000000..72ddaee Binary files /dev/null and b/MQL5/Include/Math/AOs/PopulationAO/AO_SIA_SimulatedIsotropicAnnealing.mqh differ diff --git a/README.md b/README.md index c168567..bb614c9 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ A list of implemented (+) optimization algorithms, (-) not included in the repos +P_O_ES ((P+O) evolution strategies) +SDSm (stochastic diffusion search M) +ESG (evolution of social groups) --SIA (simulated isotropic annealing) ++SIA (simulated isotropic annealing) -DE (differential evolution) +BSA (bird swarm algorithm) -HS (harmony search)