Functions of the GA genetic operator with restriction on a whole series [Matlab]

I use ga() to run the optimization task, where I have 8 variables, 6 of which have integer limitations.

Everything is fine, but I noticed that Matlab overwrites the Selection, Mutation, and Crossover functions (and this is reported here in the official documentation).

Although I could not find what are the default settings in such cases. It is normal for me if Matlab overwrites user-defined functions for integer problems, but at least I would like to know what its default behavior is.

Does anyone know the default selection, mutation, crossover functions in whole (or mixed integer) problems?

+5
source share

Source: https://habr.com/ru/post/1242944/


All Articles