Open UTSAVS26 opened 2 months ago
This is a great feature proposal! Here's my understanding and thoughts on the approach:
The genetic algorithm-based optimization will provide a flexible solution for users to find minima or maxima for a wide variety of continuous functions. The ability for users to define their own target function adds great versatility, whether they want to solve simple problems like f(x, y) = x^2 + y^2 or more complex equations. The key components, from population initialization, selection methods (like tournament or roulette wheel), to crossover and mutation strategies, provide a solid framework for diversity and adaptability in the optimization process. I appreciate the emphasis on avoiding local minima by introducing mutations, which is crucial for maintaining genetic diversity. Termination conditions based on either generation count or improvement threshold give the algorithm flexibility to suit different optimization scenarios. I’d love to contribute to implementing this, particularly around the crossover and mutation strategies. Feel free to assign me if needed. Looking forward to collaborating!
how are the test cases are being checked. I also made a new function and tried to push it. It wen till build with nno errors but in the end saying failed to test .
review my pr please its running successfully
Feature description
This feature would introduce a new genetic algorithm-based approach to optimize mathematical functions. It would allow users to find the minimum or maximum values of continuous functions using genetic algorithms.
Key Components:
This implementation would be useful for users needing a flexible and easy-to-use method for solving optimization problems in continuous spaces.