Max Fitness stuck at local maxima in genetic algorithm implementation
问题 Having trouble with this code below. It is implementation of population evolution. In my case the max fitness is struck at a local maxima everytime and is unable to reach max possible value. Kindly suggest necessary edits and reason for the same. Individual.java package genetic.algorithm.project; import java.util.Random; public class Individual { public static int SIZE = 300; private int[] genes = new int[SIZE]; private double fitnessValue = 0.0; // Getters and Setters public void setGene(int