diff options
author | Niclas Dobbertin <niclas.dobbertin@mailbox.org> | 2024-07-19 11:32:36 +0200 |
---|---|---|
committer | Niclas Dobbertin <niclas.dobbertin@mailbox.org> | 2024-07-19 11:32:36 +0200 |
commit | 3cb857f94b964d7107eda03efc0c6454748a5716 (patch) | |
tree | b3f04fa05ba95dc08f897aebfa01a5d560a6f844 /modeling/model_init.py | |
parent | b9d067b835f0c74b0d34b4289f5c6917c5544cd8 (diff) |
fix overall procedure
Diffstat (limited to 'modeling/model_init.py')
-rw-r--r-- | modeling/model_init.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modeling/model_init.py b/modeling/model_init.py index 66e74b1..a6ca3ac 100644 --- a/modeling/model_init.py +++ b/modeling/model_init.py @@ -212,8 +212,8 @@ def init(): ) # Add comparison relations to single digit numbers - for i in range(0, 11): - for j in range(0, 11): + for i in range(0, 101): + for j in range(0, 101): DM.add( actr.makechunk( f"greater{i}{j}", |