I'm trying to build a genetic algorithm to solve a basic school timetabling problem.
I'm trying to work out what a good encoding would be for this problem. I could do it as a binary string something like this:
day hour/time room
000 00000 000000
etc...
Is that the best encoding for my problem?