| 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 |