Skip to content

Commit

Permalink
link github issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Wout4 committed Jul 18, 2024
1 parent a05b699 commit 0aa644b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpmpy/solvers/pysat.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def solvernames():
from pysat.solvers import SolverNames
names = []
for name, attr in vars(SolverNames).items():
# issue with cryptosat, so we don't include it in our subsolvers https://github.com/pysathq/pysat/issues/176
# issue with cryptosat, so we don't include it in our https://github.com/msoos/cryptominisat/issues/765
if not name.startswith('__') and isinstance(attr, tuple) and not name == 'cryptosat':
if name not in attr:
name = attr[-1]
Expand Down

0 comments on commit 0aa644b

Please sign in to comment.