Skip to content

Commit 25f73ff

Browse files
committed
pysat: update main solver docs a bit
1 parent 8f26c14 commit 25f73ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cpmpy/solvers/pysat.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
"""
77
Interface to PySAT's API
88
9+
This solver can be used if the model only has Boolean variables,
10+
and only logical constraints (and,or,xor,implies,==,!=)
11+
912
===============
1013
List of classes
1114
===============
@@ -58,9 +61,6 @@ def __init__(self, cpm_model):
5861
the PySAT docs use 'model' to refer to a solution.
5962
6063
Only supports satisfaction problems (no objective)
61-
Supports only clauses at this moment!!
62-
Support for conjunctions and implications can be added through
63-
translation to 'aiger', see PySAT's documentation
6464
"""
6565
if not self.supported():
6666
raise Exception("CPM_pysat: Install the python 'python-sat' package to use this solver interface")

0 commit comments

Comments
 (0)