This is a JAVA programming assignment. Program a Genetic Algorithm to find an integer number between 0 and 31 that maximizes the function f (x) = x2. The initial procedure is given as below. • Population size: 6 • Crossover probability: 100% • Mutation probability: 5% • Terminating criteria: o When your program produces an average of candidates is equal to or greater than 29, then you can accept it as a terminating condition. • Fitness function: o You can use the function itself ( f (x) = x2)as your fitness function. 1. For the 1st generation, you need to print the process and result of selection, crossover, and mutation operation. you need to print the corresponding integer values and bits (binary values) of selection, crossover, and mutation operation. You also need to decide and print the crossover point and the mutation point. 2. From the 2nd generation, you do not have to print all results of selection, crossover, mutation operations. You can just print the result of each generation. Please provide full program of JAVA file for above.
This is a JAVA
Algorithm to find an integer number between 0 and 31 that maximizes the function f (x) = x2.
The initial procedure is given as below.
• Population size: 6
• Crossover probability: 100%
• Mutation probability: 5%
• Terminating criteria:
o When your program produces an average of candidates is equal to or greater than
29, then you can accept it as a terminating condition.
• Fitness function:
o You can use the function itself (
f (x) = x2)as your fitness function.
1. For the 1st generation, you need to print the process and result of selection, crossover, and
mutation operation.
you need to print the corresponding integer values and bits (binary values)
of selection, crossover, and mutation operation. You also need to decide and
print the crossover point and the mutation point.
2. From the 2nd generation, you do not have to print all results of selection, crossover,
mutation operations. You can just print the result of each generation.
Please provide full program of JAVA file for above.
Thank You.
Trending now
This is a popular solution!
Step by step
Solved in 2 steps