-
Notifications
You must be signed in to change notification settings - Fork 0
/
monkaay.json
42 lines (42 loc) · 1.09 KB
/
monkaay.json
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
{
"start": ["at door", "on floor", "has ball", "hungry", "chair at door"],
"finish": ["not hungry"],
"ops": [
{
"action": "climb on chair",
"preconds": ["chair at middle room", "at middle room", "on floor"],
"add": ["at bananas", "on chair"],
"delete": ["at middle room", "on floor"]
},
{
"action": "push chair from door to middle room",
"preconds": ["chair at door", "at door"],
"add": ["chair at middle room", "at middle room"],
"delete": ["chair at door", "at door"]
},
{
"action": "walk from door to middle room",
"preconds": ["at door", "on floor"],
"add": ["at middle room"],
"delete": ["at door"]
},
{
"action": "grasp bananas",
"preconds": ["at bananas", "empty handed"],
"add": ["has bananas"],
"delete": ["empty handed"]
},
{
"action": "drop ball",
"preconds": ["has ball"],
"add": ["empty handed"],
"delete": ["has ball"]
},
{
"action": "eat bananas",
"preconds": ["has bananas"],
"add": ["empty handed", "not hungry"],
"delete": ["has bananas", "hungry"]
}
]
}