python-mip icon indicating copy to clipboard operation
python-mip copied to clipboard

Python-MIP: collection of Python tools for the modeling and solution of Mixed-Integer Linear programs

Results 107 python-mip issues
Sort by recently updated
recently updated
newest added

**Describe the bug** When changing the preprocess-parameter of the model preprocess is still performed as default. **To Reproduce** Set preprocess parameter to 0, still observe preprocess to be performed in...

After seeing "Reduced cost fixing - 45 rows, 117 columns - restarting search" message, variable access in lazy_constrs_generator callback will fail. All variable names are changed. I see that both...

bug
cbc
reproducible

Consider the following code to model the maximum independent set problem to solve the maximum clique using MIP and NetworkX: ``` import mip import networkx n = 2 ** 3...

bug
cbc

Hi, @h-g-s , @tuliotoffolo , I'd like to report a vulnerability issue in **mip_1.13.0**. ### Dependency Graph between Python and Shared Libraries ![image](https://user-images.githubusercontent.com/102780639/161431117-b1fe71b8-cdc3-4ade-867e-8bbb4eb3cc2e.png) ### Issue Description As shown in the...

cbc-platform

When running a model with lazy constraints generator enabled I observe that strong branching finds an integer solution but finally there is no solution found. Below you can find log...

help wanted
cbc

**Describe the bug** `max_seconds` doesn't work for me currently, it leads to: ``` Starting MIP optimization Unrecognized parameter - maxSavedSolutions=10, exiting... ``` This is with: ``` Welcome to the CBC...

bug
cbc

when mip is installed it comes with binaries for windows, mac, and linux. These are very large - in my experience making mip larger than even numpy or pandas! It...

cbc
mip

Hi there, I have been using mip for a long time on python, but these days I switched to pypy and noticed the following problem: NameError: name 'cbclib' is not...

help wanted
cbc
pypy

**Describe the bug** I am writing a program that solve MIP and it works well when I directly run the code. But after I use pyinstaller to pack my code...

discarded