-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExBool.hs
100 lines (72 loc) · 1.56 KB
/
ExBool.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
module ExBool where
-- Do not alter this import!
import Prelude
( Show(..)
, Eq(..)
, Ord(..)
, Num(..)
, Enum(..)
, Integral(..)
, Int
, Char
, (++)
, ($)
, (.)
, undefined
, error
, otherwise
)
-- Define evenerything that is undefined,
-- without using standard Haskell functions.
-- (Hint: recursion is your friend!)
data Bool = False | True
instance Show Bool where
show True = "true"
show False = "false"
instance Enum Bool where
toEnum = undefined
fromEnum = undefined
-- conjunction (AND)
(&&) :: Bool -> Bool -> Bool
True && True = True
_ && _ = False
infixr 3 &&
-- disjunction (OR)
(||) :: Bool -> Bool -> Bool
False || False = False
_ || _ = True
infixr 2 ||
-- NAND (Sheffer stroke)
(/|\) :: Bool -> Bool -> Bool
True /|\ True = False
_ /|\ _ = True
infixr 2 /|\
-- NOR (aka: Peirce arrow or Quine dagger)
(\|/) :: Bool -> Bool -> Bool
False \|/ False = True
_ \|/ _ = False
infixr 2 \|/
-- XOR (exclusive disjunction)
(<=/=>) :: Bool -> Bool -> Bool
p <=/=> q = (p || q) && (p /|\ q)
infixr 2 <=/=>
-- boolean negation
not :: Bool -> Bool
not True = False
not _ = True
-- if-then-else expression
ifThenElse :: Bool -> a -> a -> a
ifThenElse True x _ = x
ifThenElse _ _ y = y
-- logical "implies"
(==>) :: Bool -> Bool -> Bool
p ==> q = not p || q
infixr 1 ==>
-- logical "implied by"
(<==) :: Bool -> Bool -> Bool
p <== q = q ==> p
infixl 1 <==
-- logical equivalence
(<=>) :: Bool -> Bool -> Bool
p <=> q = (p ==> q) && (p <== q)
infixr 1 <=>