I am trying to minimize a complex objective function that has 2 decision variables
The variables have bounds as mentioned below:
0<= var1/var2 < Some_upper_bound
As per my understanding of bounds variable in the optimize.minimize() function, both upper and lower values are inclusive.
How do I create a bound such that one value is inclusive (0) and the other is exclusive (Some_upper_bound)?
Any help with this is much appreciated. Thanks in advance!