Irvin Lustig
- Total activity 9
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 3
- Subscriptions 4
Activity overview
Latest activity by Irvin Lustig-
Irvin Lustig commented,
You can hack this using the Python __dict__ method: sc = gurobipy.StatusConstClassd = {sc.__dict__[k]: k for k in sc.__dict__.keys() if k[0] >= 'A' and k[0] <= 'Z'} Then the dictionary `d` is now: ...
-
Irvin Lustig commented,
This behavior is non-intuitive and needs to be documented. IMHO, the SolutionLimit should only affect when the optimization stops, not the path of the optimizer. If the latter is the case, then p...