// ratio of the growth must be γ > 1 |
k = log(N) // number of top oop |
v = 0 // number of successive iterations without progress list containing k zeros // keeping the top k largest values of oop up to each iteration |
Stopping-Criterion (oop(t)) |
1) Detect the best iteration:
|
if , set T = t
|
2) Check the stopping criteria:
|
if v > k or t > Tmax, halt Algorithm 1 // Tmax : maximum number of iterations |
3) Check the progress of oop:
|
|
4) Update
: |
if , then replace the minimum entry with oop(t)
|