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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
|
#!/usr/bin/env python3
def multiplication(Model):
prods = []
# TODO: switch operands so less steps are needed
# switch_mul = Model.productionstring(
# name="switch_mul",
# string="""
# =g>
# =imaginal>
# ==>
# =imaginal>
# """,
# )
# prods.append(switch_mul)
mul_arg1_1 = Model.productionstring(
name="mul_arg1_1",
string="""
=g>
isa math_goal
op mul
arg1 1
arg1 =arg1
arg2 =arg2
==>
=g>
isa math_goal
op done
result =arg2
+imaginal>
isa math_op
op mul
arg1 =arg1
arg2 =arg2
result =arg2
~retrieval>
"""
)
mul_arg2_1 = Model.productionstring(
name="mul_arg2_1",
string="""
=g>
isa math_goal
op mul
arg2 1
arg1 =arg1
arg2 =arg2
==>
=g>
isa math_goal
op done
result =arg1
+imaginal>
isa math_op
op mul
arg1 =arg1
arg2 =arg2
result =arg1
~retrieval>
"""
)
mul_arg1_0 = Model.productionstring(
name="mul_arg1_0",
string="""
=g>
isa math_goal
op mul
arg1 0
arg1 =arg1
arg2 =arg2
==>
=g>
isa math_goal
op done
result 0
+imaginal>
isa math_op
op mul
arg1 =arg1
arg2 =arg2
result 0
~retrieval>
"""
)
mul_arg2_0 = Model.productionstring(
name="mul_arg2_0",
string="""
=g>
isa math_goal
op mul
arg2 0
arg1 =arg1
arg2 =arg2
==>
=g>
isa math_goal
op done
result 0
+imaginal>
isa math_op
op mul
arg1 =arg1
arg2 =arg2
result 0
~retrieval>
"""
)
# TODO: why mul_start->mul_step_success??
mul_start = Model.productionstring(
name="mul_start",
string="""
=g>
isa math_goal
op mul
arg1 ~0
arg1 ~1
arg2 ~0
arg1 ~1
arg1 =arg1
arg2 =arg2
?retrieval>
state free
==>
=g>
isa math_goal
op mul_try_retrieve
+retrieval>
isa math_op
op mul
arg1 =arg1
arg2 =arg2
""",
)
prods.append(mul_start)
# mul_start_failure = Model.productionstring(
# name="mul_start_failure",
# string="""
# =g>
# isa math_goal
# op mul_try_retrieve
# arg1 =arg1
# arg2 =arg2
# ?retrieval>
# state error
# ==>
# isa math_goal
# op mul_step
# """
mul_start_success = Model.productionstring(
name="mul_start_success",
string="""
=g>
isa math_goal
op mul_try_retrieve
arg1 =arg1
arg2 =arg2
=retrieval>
isa math_op
op mul
arg1 =arg1
arg2 =arg2
result =result
==>
=g>
isa math_goal
op done
+imaginal>
isa math_op
op mul
arg1 =arg1
arg2 =arg2
result =result
~retrieval>
""",
)
mul_step = Model.productionstring(
name="mul_step",
string="""
=g>
isa math_goal
op mul_try_retrieve
arg1 ~0
arg1 ~1
arg2 ~0
arg1 ~1
arg1 =mul
arg2 =arg
ones2 =ones
tens2 =tens
hundreds2 =huns
mul_counter None
?retrieval>
state error
==>
=g>
isa math_goal
op mul
mul_counter 1
result =arg
+retrieval>
isa math_op
op add
arg1 =arg
arg2 =arg
""",
)
prods.append(mul_step)
mul_step_success = Model.productionstring(
name="mul_step_success",
string="""
=g>
isa math_goal
op mul
arg1 =mul
arg2 =arg
ones2 =ones
tens2 =tens
hundreds2 =huns
mul_counter =mul_counter
result =result
=retrieval>
isa math_op
op add
arg1 =arg
arg2 =result
result =sum
==>
=g>
isa math_goal
result =sum
+retrieval>
isa math_op
op add
arg1 =mul_counter
arg2 1
""",
)
prods.append(mul_step_success)
mul_done = Model.productionstring(
name="mul_done",
string="""
=g>
isa math_goal
op mul
arg1 =arg1
arg2 =arg2
result =result
mul_counter =mul_counter
=retrieval>
isa math_op
op add
arg1 =mul_counter
arg2 1
result =arg1
==>
=g>
isa math_goal
op done
+imaginal>
isa math_op
op mul
arg1 =arg1
arg2 =arg2
result =result
~retrieval>
""",
)
mul_continue = Model.productionstring(
name="mul_continue",
string="""
=g>
isa math_goal
op mul
arg1 =arg1
arg2 =arg2
mul_counter =mul_counter
result =result
=retrieval>
isa math_op
op add
arg1 =mul_counter
arg2 1
result ~=arg1
result =counted
==>
=g>
isa math_goal
mul_counter =counted
~retrieval>
+retrieval>
isa math_op
op add
arg1 =arg2
arg2 =result
""",
)
mul_step_failure = Model.productionstring(
name="mul_step_failure",
string="""
=g>
isa math_goal
op mul
arg1 =mul
arg2 =arg
ones2 =ones
tens2 =tens
hundreds2 =huns
mul_counter =mul_counter
result =result
?retrieval>
state error
==>
=g>
isa math_goal
nextnextop mul_fail
nextop add
op expand
arg1 =arg
arg2 =result
mem_arg1 =mul
mem_arg2 =arg
ones1 None
tens1 None
hundreds1 None
ones2 None
tens2 None
hundreds2 None
ones_ans None
tens_ans None
hundreds_ans None
result None
~retrieval>
""",
)
# instead of remembering original mult args, maybe should
# start from the beginning, with the addition results now
# retrievable
mul_step_addition_return = Model.productionstring(
name="mul_step_addition_return",
string="""
=g>
isa math_goal
op mul_fail
mul_counter =mul_counter
result =result
mem_arg1 =mem_arg1
mem_arg2 =mem_arg2
==>
=g>
isa math_goal
op mul
arg1 =mem_arg1
arg2 =mem_arg2
+retrieval>
isa math_op
op add
arg1 =mul_counter
arg2 1
""",
)
prods.append(mul_start)
return prods
|