From 9f5afe40e26ec2995bf19b86efb73a212abab12e Mon Sep 17 00:00:00 2001 From: "Dobbertin, Niclas" Date: Tue, 16 Apr 2024 09:26:03 +0200 Subject: add greater and lesser --- modeling/productions_math.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'modeling/productions_math.py') diff --git a/modeling/productions_math.py b/modeling/productions_math.py index 8a2ebc2..40c400f 100644 --- a/modeling/productions_math.py +++ b/modeling/productions_math.py @@ -68,16 +68,16 @@ def init(): result=max(i, j), ) ) - DM.add( - actr.makechunk( - f"lesser{i}{j}", - "math_op", - op="lesser", - arg1=i, - arg2=j, - result=min(i, j), - ) - ) + # DM.add( + # actr.makechunk( + # f"lesser{i}{j}", + # "math_op", + # op="lesser", + # arg1=i, + # arg2=j, + # result=min(i, j), + # ) + # ) DM.add( actr.makechunk( f"plus{i}{j}", "math_op", op="add", arg1=i, arg2=j, result=i + j @@ -153,12 +153,12 @@ def start(): # unwind_prod() add_prods = prod_addition.addition(Model) greater_prods = prod_comp.greater_than(Model) + less_prods = prod_comp.less_than(Model) for prod in add_prods: print(prod) print("\n") - # Model.goal.add(actr.makechunk("goal", "math_op", op="greater", arg1=5, arg2=9)) print("goal: ", goal) print("imaginal: ", imaginal) x = Model.simulation() -- cgit v1.2.3