Thank you for your answer. I really appreciate it and will definitely read the link.
Going to the bottom, I think my problem is simply to find the maximum multi-parameter function. I imagine it like this:
1) Suppose I have a function of three variables - f (a, b, c), which I want to maximize
2) We randomize a real number from some interval [max, min] and convert it to a binary form
3) The drawn number is treated as a concatenation of the binary representation a, b, c
4) We run GA and evaluate each solution (we have to divide the chromosom in respect of a, b and c to evaluate)
5) Repeat the process to achieve satisfactory results
So, I now have such a question - how DEAP turns real numbers representation into binary and vice versa. Does this relate to max and min or to IEEE 754 (or something like that)? Does DEAP have automatic conversion functions that I could use?
When you talked about using the selection I thought you meant the situation as above. Do making separate chromosomes for each variable make sense?