This pull request addresses several issues and makes improvements to the paper-reviewer-matcher:
Fixed NumPy deprecation warnings:
Replaced deprecated np.float and np.int with float and int respectively
Updated matrix creation in create_lp_matrix function
Improved solver compatibility:
Adjusted problem formulation to address "No solution exists" errors
Implemented a relaxation method in perform_mindmatch function to handle over-constrained scenarios
Updated dependencies:
Added python-Levenshtein to requirements for improved performance
These changes should resolve the issues with NumPy deprecation warnings and improve the solver's ability to find solutions for complex matching problems. The code is now more compatible with the latest versions of NumPy and other dependencies.
This pull request addresses several issues and makes improvements to the paper-reviewer-matcher:
Fixed NumPy deprecation warnings:
np.float
andnp.int
withfloat
andint
respectivelycreate_lp_matrix
functionImproved solver compatibility:
perform_mindmatch
function to handle over-constrained scenariosUpdated dependencies:
These changes should resolve the issues with NumPy deprecation warnings and improve the solver's ability to find solutions for complex matching problems. The code is now more compatible with the latest versions of NumPy and other dependencies.