pysat icon indicating copy to clipboard operation
pysat copied to clipboard

A toolkit for SAT-based prototyping in Python

Results 25 pysat issues
Sort by recently updated
recently updated
newest added

On linux, when looking up the available solvers with ``` from pysat.solvers import SolverNames print(vars(SolverNames).items()) ``` we find the solver 'cryptosat', but the program crashes when trying to use this...

Hello, this might be a documentation issue. I am a novice user (also not familiar with Python) and I was puzzled for a while trying to obtain an equisatisfiable CNF...

enhancement

Hi all, Previously I used the `CardEnc` class to encode size constraints. I need multiple constraints and so I used a single `IDPool` and passed it along all of the...

enhancement

I get the error `Trying to set incremental mode, but not compiled properly for this.` when trying to instantiate `Solver(name="g42", incr=True)` How can I recompile the appropriate component to support...

enhancement

Hi, I am new to SAT solving in general. I am coming from ILP/SMT and want to learn solving things in SAT. One problem that I keep running into is...