Cross Reference: /hets/CommonLogic/TestData/cl2casl_compact.clif
cl2casl_compact.clif revision 7cf538c8e2119b185da357ec8dc6457341b3302b
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
(cl-text prop
(thisMustBeTrue)
(and (a) (b) (not (c)))
(or (d) (e) (not (f)))
)
(cl-text pred
(P g)
(Q h)
(P g h)
)
(cl-text quant
(forall (x y z) (and (P x) (P y) (not (P z))))
(exists (x) (P x))
)
(cl-text compact
(P g)
(Q P)
(forall (P) (P h))
)
(cl-text func
(= (F g) h)
(= g (G h i j))
(forall (H I) (= (H g) (I h i)))
(= ((J ((K g) h) i) j) k)
)