null
ModalCasl.hs revision 26db4a742376d513cdba128780ee8ca60eeb927e
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
{-# OPTIONS -fglasgow-exts #-}
module ModalCasl where
import Control.Monad (liftM, liftM2)
import Text.ParserCombinators.Parsec hiding (State)
{------------------------------------------------------------------------------}
{- -}
{- Formulas of Modal CASL -}
{- -}
{------------------------------------------------------------------------------}
data StateFormula a = Var a
-- Boolean Operators
| Snot (StateFormula a)
| Sand (StateFormula a) (StateFormula a)
| Sor (StateFormula a) (StateFormula a)
-- Path Quantifiers
| E (PathFormula a)
| A (PathFormula a)
-- Future Modalities
| Diamond (StateFormula a)
| Box (StateFormula a)
-- Past Modalities
| DiamondPast (StateFormula a)
| BoxPast (StateFormula a)
-- Fixpoint Opertors
| Mu a (StateFormula a)
| Nu a (StateFormula a)
data PathFormula a = State (StateFormula a)
-- Boolean Operators
| Pnot (PathFormula a)
| Pand (PathFormula a) (PathFormula a)
| Por (PathFormula a) (PathFormula a)
-- Future Temporal Operators
| X (PathFormula a)
| G (PathFormula a)
| F (PathFormula a)
| W (PathFormula a) (PathFormula a)
| U (PathFormula a) (PathFormula a)
| B (PathFormula a) (PathFormula a)
| W' (PathFormula a) (PathFormula a)
| U' (PathFormula a) (PathFormula a)
| B' (PathFormula a) (PathFormula a)
-- Past Temporal Operators
| XPast (PathFormula a)
| GPast (PathFormula a)
| FPast (PathFormula a)
| WPast (PathFormula a) (PathFormula a)
| UPast (PathFormula a) (PathFormula a)
| BPast (PathFormula a) (PathFormula a)
| XPast' (PathFormula a)
| WPast' (PathFormula a) (PathFormula a)
| UPast' (PathFormula a) (PathFormula a)
| BPast' (PathFormula a) (PathFormula a)
instance (Show a) => Show (StateFormula a) where
show phi = showStateFormula phi True
instance (Show a) => Show (PathFormula a) where
show phi = showPathFormula phi True
showStateFormula (Var x) outer = show x
showStateFormula (Snot phi) outer = "not " ++ showStateFormula phi False
showStateFormula (Sand phi psi) True = showStateFormula phi False ++ " /\\ " ++ showStateFormula psi False
showStateFormula (Sor phi psi) True = showStateFormula phi False ++ " \\/ " ++ showStateFormula psi False
showStateFormula (E phi) outer = "E " ++ showPathFormula phi False
showStateFormula (A phi) outer = "A " ++ showPathFormula phi False
showStateFormula (Diamond phi) True = "<> " ++ showStateFormula phi False
showStateFormula (Box phi) True = "[] " ++ showStateFormula phi False
showStateFormula (DiamondPast phi) True = "<~> " ++ showStateFormula phi False
showStateFormula (BoxPast phi) True = "[~] " ++ showStateFormula phi False
showStateFormula (Mu x phi) True = "mu " ++ show x ++ " . " ++ showStateFormula phi False
showStateFormula (Nu x phi) True = "nu " ++ show x ++ " . " ++ showStateFormula phi False
showStateFormula phi False = "(" ++ showStateFormula phi True ++ ")"
showPathFormula (State phi) outer = showStateFormula phi outer
showPathFormula (Pnot phi) outer = "not " ++ showPathFormula phi False
showPathFormula (Pand phi psi) True = showPathFormula phi False ++ " /\\ " ++ showPathFormula psi False
showPathFormula (Por phi psi) True = showPathFormula phi False ++ " \\/ " ++ showPathFormula psi False
showPathFormula (X phi) outer = "X " ++ showPathFormula phi False
showPathFormula (G phi) outer = "G " ++ showPathFormula phi False
showPathFormula (F phi) outer = "F " ++ showPathFormula phi False
showPathFormula (W phi psi) True = showPathFormula phi False ++ " W " ++ showPathFormula psi False
showPathFormula (U phi psi) True = showPathFormula phi False ++ " U " ++ showPathFormula psi False
showPathFormula (B phi psi) True = showPathFormula phi False ++ " B " ++ showPathFormula psi False
showPathFormula (W' phi psi) True = showPathFormula phi False ++ " W! " ++ showPathFormula psi False
showPathFormula (U' phi psi) True = showPathFormula phi False ++ " U! " ++ showPathFormula psi False
showPathFormula (B' phi psi) True = showPathFormula phi False ++ " B! " ++ showPathFormula psi False
showPathFormula (XPast phi) outer = "~X " ++ showPathFormula phi False
showPathFormula (GPast phi) outer = "~G " ++ showPathFormula phi False
showPathFormula (FPast phi) outer = "~F " ++ showPathFormula phi False
showPathFormula (WPast phi psi) True = showPathFormula phi False ++ " ~W " ++ showPathFormula psi False
showPathFormula (UPast phi psi) True = showPathFormula phi False ++ " ~U " ++ showPathFormula psi False
showPathFormula (BPast phi psi) True = showPathFormula phi False ++ " ~B " ++ showPathFormula psi False
showPathFormula (XPast' phi) outer = "~X! " ++ showPathFormula phi False
showPathFormula (WPast' phi psi) True = showPathFormula phi False ++ " ~W! " ++ showPathFormula psi False
showPathFormula (UPast' phi psi) True = showPathFormula phi False ++ " ~U! " ++ showPathFormula psi False
showPathFormula (BPast' phi psi) True = showPathFormula phi False ++ " ~B! " ++ showPathFormula psi False
showPathFormula phi False = "(" ++ showPathFormula phi True ++ ")"
{------------------------------------------------------------------------------}
parser :: Parser a -> Parser (StateFormula a)
parser var = between spaces eof stateImpl where
stateImpl = chainl1 stateOr (do string "->"
spaces
return (Sor . Snot))
stateOr = chainl1 stateAnd (do string "\\/"
spaces
return Sor)
stateAnd = chainl1 state (do string "/\\"
spaces
return Sand)
state = (do char '('
spaces
x <- stateImpl
char ')'
spaces
return x)
<|> (do string "not"
spaces
liftM Snot state)
<|> (do string "E"
spaces
liftM E pathImpl)
<|> (do string "A"
spaces
liftM A pathImpl)
<|> (do x <- string "<"
y <- option "" (string "~")
z <- string ">"
spaces
case concat [x, y, z] of
"<>" -> liftM Diamond state
"<~>" -> liftM DiamondPast state)
<|> (do x <- string "["
y <- option "" (string "~")
z <- string "]"
spaces
case concat [x, y, z] of
"[]" -> liftM Box state
"[~]" -> liftM BoxPast state)
<|> (do string "mu"
space
spaces
x <- var
spaces
char '.'
spaces
liftM (Mu x) stateImpl)
<|> (do string "nu"
space
spaces
x <- var
spaces
char '.'
spaces
liftM (Nu x) stateImpl)
<|> (do x <- var
spaces
return (Var x))
pathImpl = chainl1 pathOr (do string "->"
spaces
return (Por . Pnot))
pathOr = chainl1 pathAnd (do string "\\/"
spaces
return Por)
pathAnd = chainl1 pathBinary (do string "/\\"
spaces
return Pand)
pathBinary = chainl1 pathUnary $ (do x <- option "" (string "~")
y <- (string "W" <|> string "U" <|> string "B")
z <- option "" (string "!")
spaces
case concat [x, y, z] of
"W" -> return W
"U" -> return U
"B" -> return B
"W!" -> return W'
"U!" -> return U'
"B!" -> return B'
"~W" -> return WPast
"~U" -> return UPast
"~B" -> return BPast
"~W!" -> return WPast'
"~U!" -> return UPast'
"~B!" -> return BPast')
pathUnary = (do char '('
spaces
x <- pathImpl
char ')'
spaces
return x)
<|> (do string "not"
spaces
liftM Pnot pathUnary)
<|> (do x <- option "" (string "~")
y <- (string "X" <|> string "G" <|> string "F")
z <- if concat [x, y] == "~X" then option "" (string "!")
else return ""
spaces
case concat [x, y, z] of
"X" -> liftM X pathUnary
"G" -> liftM G pathUnary
"F" -> liftM F pathUnary
"~X" -> liftM XPast pathUnary
"~G" -> liftM GPast pathUnary
"~F" -> liftM FPast pathUnary
"~X!" -> liftM XPast' pathUnary)
<|> liftM State state
{------------------------------------------------------------------------------}