GA is not satisfying nonlinear constraints

조회 수: 1 (최근 30일)
구구
구구 2022년 1월 6일
댓글: 구구 2022년 1월 10일
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?

채택된 답변

Alan Weiss
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
  댓글 수: 1
구구
구구 2022년 1월 10일
Thank you for your answer. Problem fixed!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Genetic Algorithm에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by