1

When I run the GA solver, I got the following warning: What does it mean? What action should I take or I just ignore it?

Warning: Length of upper bounds is > length(x); ignoring extra bounds.

Dennis Jaheruddin
  • 21,208
  • 8
  • 66
  • 122
Sa Ta
  • 11
  • 4

1 Answers1

0

It means you have specified more upperbounds ub(i) than the number of unknown variables, nvars. The extra ub(i) will be ignored by GA.

Matt J
  • 1,127
  • 7
  • 15