Skip to content

Commit

Permalink
Support floats and uninterpreted sorts in Bitwuzla
Browse files Browse the repository at this point in the history
  • Loading branch information
LeventErkok committed Aug 21, 2024
1 parent 922049f commit f23f2c4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
* Hackage: <http://hackage.haskell.org/package/sbv>
* GitHub: <http://github.com/LeventErkok/sbv>

### Version 10.12.5, Not yet released

* Turn on support for floats and uninterpreted sorts/functions in Bitwuzla.

### Version 10.12, 2024-08-11

* Fix a few custom-floating-point format conversion bugs. Thanks to Sirui Lu for the patch.
Expand Down
4 changes: 2 additions & 2 deletions Data/SBV/Provers/Bitwuzla.hs
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ bitwuzla = SMTSolver {
, supportsDefineFun = True
, supportsDistinct = True
, supportsBitVectors = True
, supportsUninterpretedSorts = False
, supportsUninterpretedSorts = True
, supportsUnboundedInts = False
, supportsInt2bv = False
, supportsReals = False
, supportsApproxReals = False
, supportsDeltaSat = Nothing
, supportsIEEE754 = False
, supportsIEEE754 = True
, supportsSets = False
, supportsOptimization = False
, supportsPseudoBooleans = False
Expand Down

0 comments on commit f23f2c4

Please sign in to comment.