Difference between revisions of "Contraction"

From Adaptive Population based Simplex
Jump to: navigation, search
(Created page with "TO COMPLETE == Basic contraction (c0) == The new test position is the gravity centre of the three points defined during the selection phase.")
 
(Basic contraction (c0))
Line 2: Line 2:
  
 
== Basic contraction (c0) ==
 
== Basic contraction (c0) ==
 +
We combine four individuals, xbest, xworst2, wworst, and the current xi that has to be moved.<br />
  
The new test position is the gravity centre of the three points defined during the selection phase.
+
The idea is that the gravity centre of the three first points may be interesting. However, 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 />
 +
xc,d=(xbest,d+wworst2,d+wworst,d)/3<br />
 +
else <br />
 +
xc,d=xi,d
 +
 
 +
If xc is better than xi, decrease the population cost
 +
CCf(xi)+f(xc)
 +
 
 +
If xc is better than the best ever found (i.e. Best), set Best=xc.

Revision as of 18:54, 28 June 2013

TO COMPLETE

Basic contraction (c0)

We combine four individuals, xbest, xworst2, wworst, and the current xi that has to be moved.

The idea is that the gravity centre of the three first points may be interesting. However, 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)
xc,d=(xbest,d+wworst2,d+wworst,d)/3
else
xc,d=xi,d

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

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