summaryrefslogtreecommitdiff
path: root/modeling/productions_math.py
diff options
context:
space:
mode:
authorDobbertin, Niclas <niclas.dobbertin@mailbox.org>2024-04-16 11:40:09 +0200
committerDobbertin, Niclas <niclas.dobbertin@mailbox.org>2024-04-16 11:40:09 +0200
commitee5e4fbb8c211beb8e643116ee62b2592c6b3150 (patch)
tree0b5e4e9936f575b1f0f73ce599af7d10fc5a0c6a /modeling/productions_math.py
parent9f5afe40e26ec2995bf19b86efb73a212abab12e (diff)
start prod mul
Diffstat (limited to 'modeling/productions_math.py')
-rw-r--r--modeling/productions_math.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/modeling/productions_math.py b/modeling/productions_math.py
index 40c400f..182a208 100644
--- a/modeling/productions_math.py
+++ b/modeling/productions_math.py
@@ -3,6 +3,7 @@
import pyactr as actr
import prod_addition
import prod_comp
+import prod_multi
# https://stackoverflow.com/a/39644726
@@ -154,6 +155,7 @@ def start():
add_prods = prod_addition.addition(Model)
greater_prods = prod_comp.greater_than(Model)
less_prods = prod_comp.less_than(Model)
+ multi_prods = prod_multi.multiplication(Model)
for prod in add_prods:
print(prod)