Created
March 25, 2015 12:09
-
-
Save MiyamonY/a7fdff43458a2b277596 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
type Assoc a b = [(a, b)] | |
data Prop = Const Bool | |
| Var Char | |
| Not Prop | |
| And Prop Prop | |
| Imply Prop Prop | |
p1 :: Prop | |
p1 = And (Var 'A') (Not (Var 'A')) | |
p2 :: Prop | |
p2 = Imply (And (Var 'A') (Var 'B')) (Var 'A') | |
p3 :: Prop | |
p3 = Imply (Var 'A') (And (Var 'A') (Var 'B')) | |
p4 :: Prop | |
p4 = Imply (And (Var 'A') (Imply (Var 'A') (Var 'B'))) (Var 'B') | |
type Subst = Assoc Char Bool | |
find :: (Eq a) => a -> Assoc a b -> b | |
find _ [] = error "not found" | |
find x ((a, b):as) = if a == x then b else find x as | |
eval :: Subst -> Prop -> Bool | |
eval _ (Const b) = b | |
eval s (Var x) = find x s | |
eval s (Not p) = not $ eval s p | |
eval s (And p q) = eval s p && eval s q | |
eval s (Imply p q) = eval s p <= eval s q | |
vars :: Prop -> [Char] | |
vars (Const _) = [] | |
vars (Var x) = [x] | |
vars (Not p) = vars p | |
vars (And p q) = vars p ++ vars q | |
vars (Imply p q) = vars p ++ vars q | |
type Bit = Int | |
int2bin :: Int -> [Bit] | |
int2bin 0 = [] | |
int2bin n = n `mod` 2 : int2bin (n `div` 2) | |
bools :: Int -> [[Bool]] | |
-- bools n = map (map conv . make n . int2bin) [0..limit] | |
-- where limit = pred 2 ^ n | |
-- make n bs = take n (bs ++ repeat 0) | |
-- conv 0 = False | |
-- conv 1 = True | |
bools 0 = [[]] | |
bools n = map (False:) bss ++ map (True:) bss | |
where bss = bools $ pred n | |
rmdups :: (Eq a) => [a] -> [a] | |
rmdups [] = [] | |
rmdups (x:xs) = x : (rmdups . filter (/= x) $ xs) | |
substs :: Prop -> [Subst] | |
substs p = map (zip vs) . bools . length $ vs | |
where vs = rmdups . vars $ p | |
isTaut :: Prop -> Bool | |
isTaut p = and [eval s p | s <- substs p] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment