Any body get this Error before when using GA
7 views (last 30 days)
Show older comments
I'm solving my optimization problem using GA. It works well but suddenly I start getting this error "Error using gaminlpcreateexitmsg Exitflag from galincon does not have a corresponding exit message."
Any body can help???
0 Comments
Answers (1)
Alan Weiss
on 29 Aug 2018
Sounds like maybe a bug. What MATLAB version are you using? Can you give reproduction code?
From the error message, it seems that you are solving an integer-constrained problem that also has linear constraints. As a workaround, perhaps throw in a nonlinear constraint that doesn't do anything, such as
function [c,ceq] = mynoop(x)
ceq = [];
c = -1;
Add @mynoop as the nonlinear constraint in ga. I don't know if this will really solve your problem, but in the absence of other information it is all I can think of right now.
Good luck,
Alan Weiss
MATLAB mathematical toolbox documentation
0 Comments
See Also
Categories
Find more on Linear Least Squares 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!