Research Article

Modified Biogeography-Based Optimization with Local Search Mechanism

Algorithm 2

Pseudocode of modified migration operator.
(1)   Begin
(2)   For   i = 1 to NP
(3)    Select according to immigration rate using sinusoidal migration model
(4)    If   is selected
(5)     For   j = 1 to NP
(6)      Generate fourmutually different integers in {1… NP}
(7)      Select according to emigration rate
(8)       If rand(0,1)<
(9)       
(10)    Else
(11)     
(12)    EndIf
(13)   EndFor
(14)  EndIf
(15) EndFor
(16) End