Closed jwaldmann closed 2 years ago
I was trying to run tests/Moore.hs, and it just failed without any indication why.
The source code uses solveWith anyminisat, where anyminisat = trySolvers [cryptominisat5, cryptominisat, minisat]
solveWith anyminisat
anyminisat = trySolvers [cryptominisat5, cryptominisat, minisat]
On my machine, I did not have cryptominisat installed, and that makes the call fail.
cryptominisat
trySolvers was broken, it should fallback correctly now
I was trying to run tests/Moore.hs, and it just failed without any indication why.
The source code uses
solveWith anyminisat
, whereanyminisat = trySolvers [cryptominisat5, cryptominisat, minisat]
On my machine, I did not have
cryptominisat
installed, and that makes the call fail.