{-# OPTIONS_GHC -Wall -Werror #-}
module Documentation.SBV.Examples.Puzzles.DogCatMouse where
import Data.SBV
puzzle :: IO AllSatResult
puzzle :: IO AllSatResult
puzzle = SymbolicT IO SBool -> IO AllSatResult
forall a. Provable a => a -> IO AllSatResult
allSat (SymbolicT IO SBool -> IO AllSatResult)
-> SymbolicT IO SBool -> IO AllSatResult
forall a b. (a -> b) -> a -> b
$ do
[SInteger
dog, SInteger
cat, SInteger
mouse] <- [String] -> Symbolic [SInteger]
sIntegers [String
"dog", String
"cat", String
"mouse"]
[SBool] -> SymbolicT IO SBool
solve [ SInteger
dog SInteger -> SInteger -> SBool
forall a. OrdSymbolic a => a -> a -> SBool
.>= SInteger
1
, SInteger
cat SInteger -> SInteger -> SBool
forall a. OrdSymbolic a => a -> a -> SBool
.>= SInteger
1
, SInteger
mouse SInteger -> SInteger -> SBool
forall a. OrdSymbolic a => a -> a -> SBool
.>= SInteger
1
, SInteger
dog SInteger -> SInteger -> SInteger
forall a. Num a => a -> a -> a
+ SInteger
cat SInteger -> SInteger -> SInteger
forall a. Num a => a -> a -> a
+ SInteger
mouse SInteger -> SInteger -> SBool
forall a. EqSymbolic a => a -> a -> SBool
.== SInteger
100
, SReal
15 SReal -> SInteger -> SReal
forall a. (Integral a, SymVal a) => SReal -> SBV a -> SReal
`per` SInteger
dog SReal -> SReal -> SReal
forall a. Num a => a -> a -> a
+ SReal
1 SReal -> SInteger -> SReal
forall a. (Integral a, SymVal a) => SReal -> SBV a -> SReal
`per` SInteger
cat SReal -> SReal -> SReal
forall a. Num a => a -> a -> a
+ SReal
0.25 SReal -> SInteger -> SReal
forall a. (Integral a, SymVal a) => SReal -> SBV a -> SReal
`per` SInteger
mouse SReal -> SReal -> SBool
forall a. EqSymbolic a => a -> a -> SBool
.== SReal
100
]
where SReal
p per :: SReal -> SBV a -> SReal
`per` SBV a
q = SReal
p SReal -> SReal -> SReal
forall a. Num a => a -> a -> a
* (SBV a -> SReal
forall a b.
(Integral a, HasKind a, Num a, SymVal a, HasKind b, Num b,
SymVal b) =>
SBV a -> SBV b
sFromIntegral SBV a
q :: SReal)