From aeee25889e21d52e5b047298e93821f93d8f4236 Mon Sep 17 00:00:00 2001 From: Alex Thannhauser Date: Tue, 10 Jun 2025 15:41:23 -0500 Subject: [PATCH] . --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 58e98ed..3b2f3bc 100755 --- a/main.py +++ b/main.py @@ -336,7 +336,7 @@ def calculate_simplifications(args, available_operators): if name in available_operators: s = sorted(lookup.items()); for i, (a_truthtable, a_expression) in enumerate(s): - print(f'i = {i}'); + # print(f'i = {i}'); for b_truthtable, b_expression in s: # x ? y : z ternary_truthtable = function( @@ -378,7 +378,7 @@ def get_simplifications(args, available_operators): print(); print("You have selected ternary operators, so this WILL " - "take time. Weeks."); + "take time. This will probably take weeks to run."); print();