Skip to content

Commit

Permalink
keep msg=True when detecting solvers since it's blocking the print of…
Browse files Browse the repository at this point in the history
… available solver.
  • Loading branch information
pchtsp committed Jul 12, 2024
1 parent ebf8efb commit 3ae0ff9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions HISTORY
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
# Copyright S.A.Mitchell (s.mitchell@auckland.ac.nz), 2007-
# Copyright F.Peschiera (pchtsp@gmail.com), 2019-
# See the LICENSE file for copyright information.
2.9.0 2024-07-12
HiGHS available as solver
added HiGHS_CMD to github actions
deactivated warnings on msg=False
minor fixes
2.8.0 2024-01-12
mip start in HiGHS_CMD and SCIP_PY
GUROBI solver with environment handling
Expand Down
2 changes: 1 addition & 1 deletion pulp/apis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def listSolvers(onlyAvailable=False):
"""
result = []
for s in _all_solvers:
solver = s(msg=False)
solver = s()
if (not onlyAvailable) or solver.available():
result.append(solver.name)
del solver
Expand Down

0 comments on commit 3ae0ff9

Please sign in to comment.