Skip to main content
. 2024 Oct 8;9(10):604. doi: 10.3390/biomimetics9100604
Algorithm 2: Adaptive Bi-operator Strategy
Input: p: a parent from target task.
   eopi: Random selection probability of ESOs.
Output: c: the offspring generated.
Begin
1:  If rand < eopi:
2:    Generate offspring c using DE/rand/1.
3:  Else
4:    Generate offspring c using GA.
5:  End If
End