*meta-heuristics for optimization*, *model reduction*, *data smoothing*, etc.
More details can be found in the section :ref:`section_theory`. The ADAO module
currently offers more than one hundred different algorithmic methods and allows
-the study of about 350 distinct applied problems.
+the study of about 400 distinct applied problems.
The documentation for this module is divided into several major categories,
related to the **theoretical documentation** (indicated in the section title by
de modèles*, *lissage de données*, etc. De plus amples détails peuvent être
trouvés dans la partie proposant :ref:`section_theory`. Le module ADAO offre
actuellement plus d'une centaine de méthodes algorithmiques différentes et
-permet l'étude d'environ 350 problèmes appliqués distincts.
+permet l'étude d'environ 400 problèmes appliqués distincts.
La documentation de ce module est divisée en plusieurs grandes catégories,
relatives à la **documentation théorique** (indiquée dans le titre de section
selfA._parameters["BoxBounds"],
Xini,
selfA._name,
+ 0.5, # Similaire au SPSO-2011
)
#
def CostFunction(x, QualityMeasure="AugmentedWeightedLeastSquares"):
# Initialisation de l'essaim
# --------------------------
LimitPlace = Bounds
- LimitSpeed = 0.5 * BoxBounds # "1/2*([Xmin,Xmax]-Xini)"
+ LimitSpeed = BoxBounds
#
nbfct = 1 # Nb d'évaluations
JXini, JbXini, JoXini = CostFunction(Xini,selfA._parameters["QualityCriterion"])
# Author: Jean-Philippe Argaud, jean-philippe.argaud@edf.fr, EDF R&D
__doc__ = """
- Standard Particle Swarm Optimization
+ Simple Particle Swarm Optimization
"""
__author__ = "Jean-Philippe ARGAUD"
selfA._parameters["BoxBounds"],
Xini,
selfA._name,
+ 0.5, # Similaire au SPSO-2011
)
#
def CostFunction(x, QualityMeasure="AugmentedWeightedLeastSquares"):
# Initialisation de l'essaim
# --------------------------
LimitPlace = Bounds
- LimitSpeed = 0.5 * BoxBounds # "1/2*([Xmin,Xmax]-Xini)"
+ LimitSpeed = BoxBounds
#
nbfct = 1 # Nb d'évaluations
JXini, JbXini, JoXini = CostFunction(Xini,selfA._parameters["QualityCriterion"])
# Author: Jean-Philippe Argaud, jean-philippe.argaud@edf.fr, EDF R&D
__doc__ = """
- SPSO-2011 Particle Swarm Optimization
+ Standard Particle Swarm Optimization 2011
"""
__author__ = "Jean-Philippe ARGAUD"
)
self.defineRequiredParameter(
name = "NumberOfInsects",
- default = 100,
+ default = 40,
typecast = int,
message = "Nombre d'insectes dans l'essaim",
minval = -1,