GA is not satisfying nonlinear constraints
1 view (last 30 days)
Show older comments
I'm using GA to optimize geometry for maximum safety ratio.
Input parameter contain length, width, and etc, and the nonlinear constraints, for example, sum of length and width is less than that of inital geometry.
UseParallel option is set for true.
When I run the code, because of geometry error, the code stops so I added a code to check if input parameters are satisfying the nonlinear constraints.
How to make each generation and each population always satisfy nonlinear constraints?
0 Comments
Accepted Answer
Alan Weiss
on 7 Jan 2022
The answer is that you cannot ensure that nonlinear constraints are satisfied at every step. Instead, your code must accept points that are infeasible and handle them appropriately. You can put try-catch statements in your code to handle errors that result from infeasible points, or do something else. Your code usually should return NaN for infeasible points. Or it can return an arbitrary large value, such as 1e6, which presumably is too large to be a minimum.
Alan Weiss
MATLAB mathematical toolbox documentation
More Answers (0)
See Also
Categories
Find more on Genetic Algorithm in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!