Hello,
I have a mini-max variable that is being minimized in my objective function; this variable is set to be greater then or equal to a set of other variables that are all integers. Thus, my objective variable will also presumably be an integer.
Because of this logic, I created this mini-max variable as a GRB.INTEGER. I am curious though -- are there performance benefits to creating this variable with type GRB.CONTINUOUS? I know that continuous variables are typically "easier" to solve to optimal, but in this case I also *know* that the variable in question will always be an integer (because it is being minimized, but constrained to be larger then the sum of other variables that are all integers). It's also quite possible that there is no performance difference either way...
Any guidance is appreciated.
Thanks,
Will