sbv-7.7: SBVTestSuite/TestSuite/Puzzles/U2Bridge.hs
-----------------------------------------------------------------------------
-- |
-- Module : TestSuite.Puzzles.U2Bridge
-- Copyright : (c) Levent Erkok
-- License : BSD3
-- Maintainer : erkokl@gmail.com
-- Stability : experimental
--
-- Test suite for Documentation.SBV.Examples.Puzzles.U2Bridge
-----------------------------------------------------------------------------
module TestSuite.Puzzles.U2Bridge(tests) where
import Documentation.SBV.Examples.Puzzles.U2Bridge
import Utils.SBVTestFramework
-- Test suite
tests :: TestTree
tests =
testGroup "Puzzles.U2Bridge"
[ testCase "U2Bridge_cnt1" (assert $ (0 ==) `fmap` count 1)
, testCase "U2Bridge_cnt2" (assert $ (0 ==) `fmap` count 2)
, testCase "U2Bridge_cnt3" (assert $ (0 ==) `fmap` count 3)
, testCase "U2Bridge_cnt4" (assert $ (0 ==) `fmap` count 4)
, testCase "U2Bridge_cnt6" (assert $ (0 ==) `fmap` count 6)
, goldenVsStringShow "U2Bridge" (slv 5)
]
where act = do b <- exists_; p1 <- exists_; p2 <- exists_; return (b, p1, p2)
count n = numberOfModels $ isValid `fmap` mapM (const act) [1..(n::Int)]
slv n = sat $ isValid `fmap` mapM (const act) [1..(n::Int)]