forked from dnr2/krr-question-answering
-
Notifications
You must be signed in to change notification settings - Fork 0
/
task1.meld
60 lines (48 loc) · 1.42 KB
/
task1.meld
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
(in-microtheory TaskGlobalMt)
(isa TaskLocalMt Microtheory)
(genlMt TaskLocalMt TaskGlobalMt)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Entities
(in-microtheory TaskLocalMt)
(isa TaskJohn Person)
(isa TaskMary Person)
(isa TaskDaniel Person)
(isa TaskSandra Person)
(isa TaskHallway Place)
(isa TaskBathroom Place)
(isa TaskBedroom Place)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Events
;; Event 1
(in-microtheory TaskLocalMt)
(isa Event1Mt Microtheory)
(genlMt Event1Mt TaskLocalMt)
(in-microtheory Event1Mt)
(MovesTo TaskJohn TaskHallway)
;; Event 2
(in-microtheory TaskLocalMt)
(isa Event2Mt Microtheory)
(genlMt Event2Mt TaskLocalMt)
(happensAfter Event2Mt Event1Mt)
(in-microtheory Event2Mt)
(MovesTo TaskMary TaskBathroom)
;; Event 3
(in-microtheory TaskLocalMt)
(isa Event3Mt Microtheory)
(genlMt Event3Mt TaskLocalMt)
(happensAfter Event3Mt Event2Mt)
(in-microtheory Event3Mt)
(MovesTo TaskDaniel TaskBathroom)
;; Event 4
(in-microtheory TaskLocalMt)
(isa Event4Mt Microtheory)
(genlMt Event4Mt TaskLocalMt)
(happensAfter Event4Mt Event3Mt)
(in-microtheory Event4Mt)
(MovesTo TaskJohn TaskBedroom)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Queries
; (isCurrentlyIn TaskJohn ?x)
; (doForgetKBMt TaskLocalMt)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; End of Code