GA is not satisfying nonlinear constraints
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Alan Weiss
2022-1-7
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
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Genetic Algorithm 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!