MATLAB: Intlinprog – MaxTime and LPMaxIter

intlinproglpmaxitermaxtime

Dear Everyone, Could I ask how to set the intlinprog option in order to have BOTH MaxTime and LPMaxIter set to Inf (or as large as it can). Seems the two variables are interrelated (change one would effect the other). Thanks, Francis

Best Answer

You cannot set them to inf but you can set them to a large number.
>> opts = optimoptions('intlinprog','MaxTime',inf,'LPMaxIter',inf)
opts =
intlinprog options:
Set by user:
LPMaxIter: Inf
MaxTime: Inf
Default:
...
Now whether that's a good idea or not...