Research Article

A New Adaptive Hungarian Mating Scheme in Genetic Algorithms

Algorithm 1

Voting rules.
// input: two parents and two offspring
// output: FAR, NEAR, or RAND
// : distance function between and
Function vote()
If  , , or   then
return  FAR;
end if
;
if    then
return  FAR;
end if
if   ratio <   then
return  RAND;
end if
if    then
return  NEAR;
end if