Can anyone suggest how can I implement a GA for problem? In my problem Suppose I have 4 Machine (A,B,C,D), each machine has its own Efficiency Measure (EFM). If I combine them they can produce different EFM value. My goal is to find the best combination (such as ACD) that gives Highest EFM value (95).
when I am going to implement I have Combination of Machines are:
A
B
C
D
AB
AC
........
ABCD
My EFM function produce value for given combination: val = EFM(comb_n)
My idea is:
Combinations = chromosome
EFM = fitness
Can anyone Suggest me how to implement it using GA?