bsearchmut2 {adana}R Documentation

Boundary Search Mutation 2

Description

Boundary Search Mutation-2 is an algorithm based on searching the convenience region boundaries in constraint processing for NLP optimization (Michalewicz & Schoenauer, 1996). Two genes are randomly selected from the chromosome and one is multiplied by the random value p, while the other gene is multiplied by the q value calculated using p.

This operator is used for value encoded (integer or real number) chromosomes.

Usage

bsearchmut2(y, ...)

Arguments

y

A vector. Chromosome of the offspring

...

Further arguments passed to or from other methods.

Value

mutant

A vector. Chromosome of the offspring

mutgen

A vector. The numbers of the mutated genes.

Author(s)

Zeynel Cebeci & Erkut Tekeli

References

Michalewicz, Z. and Schoenauer, M. (1996). Evolutionary algorithms for constrained parameter optimization problems. Evolutionary Computation, 4(1), 1-32.

See Also

mutate, bitmut, randmut, randmut2, randmut3, randmut4, unimut, boundmut, nunimut, nunimut2, powmut, powmut2, gaussmut, gaussmut2, gaussmut3, bsearchmut1, swapmut, invmut, shufmut, insmut, dismut, invswapmut, insswapmut, invdismut

Examples

offspring = c(8, 6, 4, 1, 3)
bsearchmut2(offspring)

[Package adana version 1.1.0 Index]