It seems to me like IntervalOptimization would be well suited optimization problems where the variables are constrained to be integers.
AIUI, nothing fundermental about the algorithm means it should not work on integers.
And Integer Optimization is already very expensive so the fact that Interval Optimization is expensive is less of a problem.
one problem is the package is currently hardcoded to use mid and bisect with the default α to perform the bisection.
The choice of α doesn't AIUI effect the correctness of the algorithm.
But the current method does give non-integer values.
It seems to me like IntervalOptimization would be well suited optimization problems where the variables are constrained to be integers.
AIUI, nothing fundermental about the algorithm means it should not work on integers.
And Integer Optimization is already very expensive so the fact that Interval Optimization is expensive is less of a problem.
one problem is the package is currently hardcoded to use
midandbisectwith the defaultαto perform the bisection.The choice of
αdoesn't AIUI effect the correctness of the algorithm.But the current method does give non-integer values.