lapjv
lapjv copied to clipboard
Linear Assignmment Problem solver using Jonker-Volgenant algorithm - Python 3 native module.
I followed the instructions and installed the package using `pip3 install lapjv`. However, when I test it with a simple matrix, the results are incorrect. I compared the results with...
Bumps [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) from 22.3.23 to 23.2.13. Release notes Sourced from flake8-bugbear's releases. 23.2.13 B906: Add visit_Bytes, visit_Num and visit_Str to the list of visit_* functions that are ignored by the...
Hi, I was looking for a fast linear assignment solver and came across this project. Great work! Thank you. It compares well against Scipy's linear_sum_assignment on square matrices, but is...
Bumps [numpy](https://github.com/numpy/numpy) from 1.23.4 to 1.24.2. Release notes Sourced from numpy's releases. v1.24.2 NumPy 1.24.2 Release Notes NumPy 1.24.2 is a maintenance release that fixes bugs and regressions discovered after...
Bumps [flake8-import-order](https://github.com/PyCQA/flake8-import-order) from 0.18.1 to 0.18.2. Changelog Sourced from flake8-import-order's changelog. 0.18.2 2022-11-26 Add zoneinfo to list of standard library modules Fix registering of options with Flake8 >= 6.0 Commits...
Bumps [pycodestyle](https://github.com/PyCQA/pycodestyle) from 2.8.0 to 2.10.0. Changelog Sourced from pycodestyle's changelog. 2.10.0 (2022-11-23) Changes: E231: allow trailing comma inside 1-tuples in []. PR #1108. W601, W602, W603, W604: removed (no...
Bumps [flake8](https://github.com/pycqa/flake8) from 4.0.1 to 6.0.0. Commits b9a7794 Release 6.0.0 b5cac87 Merge pull request #1748 from PyCQA/upgrade-pyflakes 489be4d upgrade pyflakes to 3.0.0 8c06197 Merge pull request #1746 from PyCQA/bump-pycodestyle 047e6f8...
The current `setup.py` lists: ```python install_requires=["numpy>=1.0.0"], tests_require=["scipy>=1.0.0"], setup_requires=["numpy>=1.20.0"], ``` This means `pip` will try to install the current version on `lapjv` even if `numpy` is older than 1.20. It will...
This has already been mentioned in [another issue](https://github.com/src-d/lapjv/issues/7), but I thought it merits its own thread, and besides the other one hasn't been updated for quite a while. Since the...
Hey great library! I'm curious about why this function crashes on large assignment problems. It worked for me for 5000 and 10,000 position problems but crashed for 55,000 immediately. At...