-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathops_test.txt
123 lines (115 loc) · 1.65 KB
/
ops_test.txt
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
This is the tasks example domain.
(operator
t1
(params
(<a> ObjA) (<b> ObjB)
)
(preconds
(there-is <a>)
(there-is-not <b>)
)
(effects
(del there-is-not <b>) (there-is <b>)
)
)
(operator
t2
(params
(<a> ObjA) (<c> ObjC) (<d> ObjD)
)
(preconds
(there-is <a>)
(there-is-not <c>)
(there-is-not <d>)
)
(effects
(del there-is-not <c>) (there-is <c>)
(del there-is-not <d>) (there-is <d>)
)
)
(operator
t3
(params
(<b> ObjB) (<c> ObjC) (<d> ObjD) (<e> ObjE)
)
(preconds
(there-is <b>)
(there-is <c>)
(there-is <d>)
(there-is-not <e>)
)
(effects
(del there-is-not <e>) (there-is <e>)
)
)
(operator
t4
(params
(<a> ObjA) (<e> ObjE) (<f> ObjF)
)
(preconds
(there-is <a>)
(there-is <e>)
(there-is-not <f>)
)
(effects
(del there-is-not <f>) (there-is <f>)
)
)
(operator
t5
(params
(<a> ObjA) (<c> ObjC) (<d> ObjD) (<e> ObjE)
)
(preconds
(there-is <a>)
(there-is <c>)
(there-is <d>)
(there-is-not <e>)
)
(effects
(del there-is-not <e>) (there-is <e>)
)
)
(operator
t6
(params
(<b> ObjB) (<d> ObjD) (<g> ObjG)
)
(preconds
(there-is <b>)
(there-is <d>)
(there-is-not <g>)
)
(effects
(del there-is-not <g>) (there-is <g>)
)
)
(operator
t7
(params
(<e> ObjE) (<g> ObjG) (<h> ObjH)
)
(preconds
(there-is <e>)
(there-is <g>)
(there-is-not <h>)
)
(effects
(del there-is-not <h>) (there-is <h>)
)
)
(operator
t8
(params
(<f> ObjF) (<h> ObjH) (<i> ObjI)
)
(preconds
(there-is <f>)
(there-is <h>)
(there-is-not <i>)
)
(effects
(del there-is-not <i>) (there-is <i>)
)
)