summaryrefslogtreecommitdiff
path: root/modeling/productions_math.py
diff options
context:
space:
mode:
Diffstat (limited to 'modeling/productions_math.py')
-rw-r--r--modeling/productions_math.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/modeling/productions_math.py b/modeling/productions_math.py
index 326b9c4..542f2e3 100644
--- a/modeling/productions_math.py
+++ b/modeling/productions_math.py
@@ -107,9 +107,9 @@ def start():
userinput[phase][stimuli.current_stimulus_id][str(i)].append(
sim.current_event.action.split(":")[1].strip()
)
- if "RULE FIRED:" in sim.current_event.action and " and " in sim.current_event.action:
+ if "RULE FIRED:" in sim.current_event.action and "number_expand_done and continue_with_next_op" in sim.current_event.action:
print("FIRED COMPILED RULE!!!!")
- print(Model.productions[sim.current_event.action[12:]])
+ # print(Model.productions[sim.current_event.action[12:]])
# break
if sim.current_event.action == "NO RULE FOUND":
print(goal)
@@ -161,8 +161,8 @@ def start():
# print("#######used prods########")
# print(sim.ordered_rulenames)
- pprint(sim._Simulation__pr.rules)
- pprint(sim._Simulation__pr.ordered_rulenames)
+ # pprint(sim._Simulation__pr.rules)
+ # pprint(sim._Simulation__pr.ordered_rulenames)
if __name__ == "__main__":
start()