Difference between revisions of "Reflection/Expansion"

From Adaptive Population based Simplex
Jump to: navigation, search
m (Admin moved page Expansion to Reflection)
(typos)
Line 1: Line 1:
== Basic reflection (r0) ==
+
== Basic expansion (r0) ==
We combine four individuals, xbest, xworst2, wworst, and the current xi that has to be moved. The idea is that a move from $w_{worst}tow_{worst2}isprobablyagoodone,so,onthecontrary,thesamemoveappliedtox_{best}isprobablyabadone,i.e.ittendstodeterioratetheposition.Butontheotherhand,italsogivesachancetoescapefromtheattractionbasinofx_{best}$.
+
We combine four individuals, xbest, xworst2, wworst, and the current xi that has to be moved. The idea is that a move from $x_{worst}tox_{worst2}isprobablyagoodone,so,onthecontrary,thesamemoveappliedtox_{best}isprobablyabadone,i.e.ittendstodeterioratetheposition.Butontheotherhand,italsogivesachancetoescapefromtheattractionbasinofx_{best}$.
  
 
Of course, for a unimodal landscape, this is a waste of time, but for multimodal ones, it may be useful. Moreover, this move is not applied on all dimensions, but only on some of them, according to the probability estimated at the end of the selection phase. So, finally, the formulae to define the new point xe are, for each dimension d:<br />
 
Of course, for a unimodal landscape, this is a waste of time, but for multimodal ones, it may be useful. Moreover, this move is not applied on all dimensions, but only on some of them, according to the probability estimated at the end of the selection phase. So, finally, the formulae to define the new point xe are, for each dimension d:<br />
  
 
if (rand(0,1)<p) <br />
 
if (rand(0,1)<p) <br />
$  x_{r,d}=x_{best,d}+(w_{worst2,d}-w_{worst,d})$<br />
+
$  x_{r,d}=x_{best,d}+(x_{worst2,d}-x_{worst,d})$<br />
 
else <br />
 
else <br />
 
xr,d=xi,d
 
xr,d=xi,d

Revision as of 09:34, 22 September 2015

Basic expansion (r0)

We combine four individuals, xbest, xworst2, wworst, and the current xi that has to be moved. The idea is that a move from xworst to xworst2 is probably a good one, so, on the contrary, the same move applied to xbest is probably a bad one, i.e. it tends to deteriorate the position. But on the other hand, it also gives a chance to escape from the attraction basin of xbest.

Of course, for a unimodal landscape, this is a waste of time, but for multimodal ones, it may be useful. Moreover, this move is not applied on all dimensions, but only on some of them, according to the probability estimated at the end of the selection phase. So, finally, the formulae to define the new point xe are, for each dimension d:

if (rand(0,1)<p)
xr,d=xbest,d+(xworst2,dxworst,d)
else
xr,d=xi,d

If xr is better than xi, decrease the population cost CCf(xi)+f(xr)

If xr is better than the best ever found (i.e. Best), set Best=xr.



.