packages feed

sbv 13.0 → 13.1

raw patch · 8 files changed

+12/−2 lines, 8 files

Files

CHANGES.md view
@@ -1,6 +1,10 @@ * Hackage: <http://hackage.haskell.org/package/sbv> * GitHub:  <http://github.com/LeventErkok/sbv> +### Version 13.1, 2025-10-31++  * Tweaks to make sure SBV compiles with GHC 9.8.4. No other changes on top of 13.0 below.+ ### Version 13.0, 2025-10-31    * SBV now supports algebraic data-types. A new function 'mkSymbolic' is introduced, which take a list of types
Data/SBV/TP/List.hs view
@@ -16,6 +16,7 @@ {-# LANGUAGE OverloadedLists     #-} {-# LANGUAGE QuasiQuotes         #-} {-# LANGUAGE ScopedTypeVariables #-}+{-# LANGUAGE TypeAbstractions    #-} {-# LANGUAGE TypeApplications    #-}  {-# OPTIONS_GHC -Wall -Werror #-}
Data/SBV/TP/Utils.hs view
@@ -17,6 +17,7 @@ {-# LANGUAGE NamedFieldPuns             #-} {-# LANGUAGE ScopedTypeVariables        #-} {-# LANGUAGE TupleSections              #-}+{-# LANGUAGE TypeAbstractions           #-} {-# LANGUAGE TypeApplications           #-}  {-# OPTIONS_GHC -Wall -Werror #-}
Documentation/SBV/Examples/TP/Basics.hs view
@@ -11,8 +11,9 @@  {-# LANGUAGE CPP                 #-} {-# LANGUAGE DataKinds           #-}-{-# LANGUAGE TypeApplications    #-} {-# LANGUAGE ScopedTypeVariables #-}+{-# LANGUAGE TypeAbstractions    #-}+{-# LANGUAGE TypeApplications    #-}  {-# OPTIONS_GHC -Wall -Werror #-} 
Documentation/SBV/Examples/TP/InsertionSort.hs view
@@ -14,6 +14,7 @@ {-# LANGUAGE FlexibleContexts    #-} {-# LANGUAGE OverloadedLists     #-} {-# LANGUAGE ScopedTypeVariables #-}+{-# LANGUAGE TypeAbstractions    #-} {-# LANGUAGE TypeApplications    #-}  {-# OPTIONS_GHC -Wall -Werror #-}
Documentation/SBV/Examples/TP/QuickSort.hs view
@@ -17,6 +17,7 @@ {-# LANGUAGE FlexibleContexts    #-} {-# LANGUAGE OverloadedLists     #-} {-# LANGUAGE ScopedTypeVariables #-}+{-# LANGUAGE TypeAbstractions    #-} {-# LANGUAGE TypeApplications    #-}  {-# OPTIONS_GHC -Wall -Werror #-}
Documentation/SBV/Examples/TP/VM.hs view
@@ -17,6 +17,7 @@ {-# LANGUAGE QuasiQuotes         #-} {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE TemplateHaskell     #-}+{-# LANGUAGE TypeAbstractions    #-} {-# LANGUAGE TypeApplications    #-}  {-# OPTIONS_GHC -Wall -Werror #-}
sbv.cabal view
@@ -1,7 +1,7 @@ Cabal-Version: 2.2  Name        : sbv-Version     : 13.0+Version     : 13.1 Category    : Formal Methods, Theorem Provers, Bit vectors, Symbolic Computation, Math, SMT Synopsis    : SMT Based Verification: Symbolic Haskell theorem prover using SMT solving. Description : Express properties about Haskell programs and automatically prove them using SMT