-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy patha3_twoside.metta
52 lines (47 loc) · 1.57 KB
/
a3_twoside.metta
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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Variables can appear in knowledge base entries
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(implies (Frog $x) (Green $x))
(implies (Frog $x) (Eats-flies $x))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Bound variables on both sides will be substituted
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
!(assertEqualToResult
(match &self
(implies (Frog Sam) $what)
$what)
((Green Sam)
(Eats-flies Sam)))
!(assertEqualToResult
(match &self
(implies ($P $x) (Green Sam))
($x might be $P))
((Sam might be Frog)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Composite queries
; The comma is used to form a conjunction of queries with shared
; variables, which should be satisfied simultaneously.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Some facts
(Frog Sam)
(Robot Sophia)
!(assertEqualToResult
(match &self
(, (Frog $x)
(implies (Frog $x) $y))
$y)
((Green Sam)
(Eats-flies Sam)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Variables in queries can remain unbound
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
!(assertEqualToResult
(match &self
(, (implies ($P $x) (Green $x))
(implies ($P $x) (Eats-flies $x)))
(Then it is definitely $P))
((Then it is definitely Frog)))