Skip to main content
. 2018 Aug 22;18(9):2764. doi: 10.3390/s18092764
Algorithm 4. Solution promotion algorithm.
Input: x , xs , differential set T
Output: x
1: While T=ϕ
2: Change xs(i) in xs as 1xs(i);
3: Compute f(xs) , xs={xs(1),xs(2),,1xs(i),,xs(n)};
4: If (f(xs)>B=f(x))
5: x=xs;
6: Else if (f(xs)B=f(x))
7: T=T{xs(j)};
8: End while
9: Return x;