Created
November 25, 2018 23:39
-
-
Save buggymcbugfix/1afea2d466e5dc21655a76037accccdd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env stack | |
{- stack script | |
--resolver nightly-2018-11-23 | |
--package sbv | |
-} | |
{-# LANGUAGE DeriveAnyClass #-} | |
{-# LANGUAGE DeriveGeneric #-} | |
{-# LANGUAGE BlockArguments #-} | |
import Control.Monad ((<=<)) | |
import Data.SBV | |
import Data.SBV.Control | |
import GHC.Generics (Generic) | |
newtype SNatX = SNatX { xVal :: SInteger } | |
deriving (Generic, Mergeable) | |
instance Show SNatX where | |
show (SNatX val) = case unliteral val of | |
Just (-1) -> "∞" | |
Just n -> show n | |
_ -> "<symbolic>" | |
inf :: SNatX | |
inf = SNatX (-1) | |
isInf :: SNatX -> SBool | |
isInf (SNatX n) = n .== -1 | |
instance Num SNatX where | |
x + y = ite (isInf x ||| isInf y) | |
inf | |
(SNatX (xVal x + xVal y)) | |
x * y = ite ((isInf x &&& y ./= 0) ||| (isInf y &&& x ./= 0)) -- 0 * ∞ = ∞ * 0 = 0 | |
inf | |
(SNatX (xVal x * xVal y)) | |
fromInteger = SNatX . literal | |
instance EqSymbolic SNatX where | |
(SNatX a) .== (SNatX b) = a .== b | |
instance OrdSymbolic SNatX where | |
a .< b = ite (isInf a) false | |
$ ite (isInf b) true | |
$ xVal a .< xVal b | |
freeSNatX :: String -> Symbolic SNatX | |
freeSNatX nm = do | |
v <- sInteger $ nm <> "_xVal" | |
constrain $ v .>= -1 | |
return $ SNatX v | |
main :: IO () | |
main = print =<< sat do | |
[x, y, z] <- mapM freeSNatX ["x", "y", "z"] | |
return $ bAnd | |
[ x .== x+1 -- x = ∞ | |
, x .== x*y -- y ≠ 0 | |
, y .< x -- y ≠ ∞ | |
, z*x .== 0 -- z = 0 | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment