2 Copyright (C) 2008-2023 EDF R&D
4 This file is part of SALOME ADAO module.
6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 This library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with this library; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 Author: Jean-Philippe Argaud, jean-philippe.argaud@edf.fr, EDF R&D
24 .. index:: single: TabuSearch
25 .. _section_ref_algorithm_TabuSearch:
27 Calculation algorithm "*TabuSearch*"
28 ------------------------------------
30 .. ------------------------------------ ..
31 .. include:: snippets/Header2Algo01.rst
33 This algorithm realizes an estimation of the state of a system by minimization
34 of a cost function :math:`J` without gradient. It is a method that does not use
35 the derivatives of the cost function. It falls in the same category than the
36 :ref:`section_ref_algorithm_DerivativeFreeOptimization`, the
37 :ref:`section_ref_algorithm_ParticleSwarmOptimization` or the
38 :ref:`section_ref_algorithm_DifferentialEvolution`.
40 This is an optimization method allowing for global minimum search of a general
41 error function :math:`J` of type :math:`L^1`, :math:`L^2` or :math:`L^{\infty}`,
42 with or without weights. The default error function is the augmented weighted
43 least squares function, classically used in data assimilation.
45 It works by iterative random exploration of the surroundings of the current
46 point, to choose the state that minimizes the error function. To avoid
47 returning to a point already explored, the algorithm's memory mechanism allows
48 to exclude (hence the name *tabu*) the return to the last explored states.
49 Positions already explored are kept in a list of finite length.
51 .. ------------------------------------ ..
52 .. include:: snippets/Header2Algo02.rst
54 .. include:: snippets/Background.rst
56 .. include:: snippets/BackgroundError.rst
58 .. include:: snippets/Observation.rst
60 .. include:: snippets/ObservationError.rst
62 .. include:: snippets/ObservationOperator.rst
64 .. ------------------------------------ ..
65 .. include:: snippets/Header2Algo03AdOp.rst
67 .. include:: snippets/BoundsWithNone.rst
69 .. include:: snippets/LengthOfTabuList.rst
71 .. include:: snippets/MaximumNumberOfIterations_50.rst
73 .. include:: snippets/NoiseAddingProbability.rst
75 .. include:: snippets/NoiseDistribution.rst
77 .. include:: snippets/NoiseHalfRange.rst
79 .. include:: snippets/NumberOfElementaryPerturbations.rst
81 .. include:: snippets/QualityCriterion.rst
83 .. include:: snippets/SetSeed.rst
85 .. include:: snippets/StandardDeviation.rst
87 StoreSupplementaryCalculations
88 .. index:: single: StoreSupplementaryCalculations
90 *List of names*. This list indicates the names of the supplementary
91 variables, that can be available during or at the end of the algorithm, if
92 they are initially required by the user. Their avalability involves,
93 potentially, costly calculations or memory consumptions. The default is then
94 a void list, none of these variables being calculated and stored by default
95 (excepted the unconditionnal variables). The possible names are in the
96 following list (the detailed description of each named variable is given in
97 the following part of this specific algorithmic documentation, in the
98 sub-section "*Information and variables available at the end of the
105 "CurrentIterationNumber",
110 "SimulatedObservationAtBackground",
111 "SimulatedObservationAtCurrentState",
112 "SimulatedObservationAtOptimum",
116 ``{"StoreSupplementaryCalculations":["CurrentState", "Residu"]}``
118 .. ------------------------------------ ..
119 .. include:: snippets/Header2Algo04.rst
121 .. include:: snippets/Analysis.rst
123 .. include:: snippets/CostFunctionJ.rst
125 .. include:: snippets/CostFunctionJb.rst
127 .. include:: snippets/CostFunctionJo.rst
129 .. ------------------------------------ ..
130 .. include:: snippets/Header2Algo05.rst
132 .. include:: snippets/Analysis.rst
134 .. include:: snippets/BMA.rst
136 .. include:: snippets/CostFunctionJ.rst
138 .. include:: snippets/CostFunctionJb.rst
140 .. include:: snippets/CostFunctionJo.rst
142 .. include:: snippets/CurrentIterationNumber.rst
144 .. include:: snippets/CurrentState.rst
146 .. include:: snippets/Innovation.rst
148 .. include:: snippets/OMA.rst
150 .. include:: snippets/OMB.rst
152 .. include:: snippets/SimulatedObservationAtBackground.rst
154 .. include:: snippets/SimulatedObservationAtCurrentState.rst
156 .. include:: snippets/SimulatedObservationAtOptimum.rst
158 .. ------------------------------------ ..
159 .. _section_ref_algorithm_TabuSearch_examples:
161 .. include:: snippets/Header2Algo06.rst
163 - :ref:`section_ref_algorithm_DerivativeFreeOptimization`
164 - :ref:`section_ref_algorithm_DifferentialEvolution`
165 - :ref:`section_ref_algorithm_ParticleSwarmOptimization`
167 .. ------------------------------------ ..
168 .. include:: snippets/Header2Algo07.rst