This commit is contained in:
Alex Thannhauser 2025-06-10 15:41:23 -05:00
parent 04d997c031
commit aeee25889e

View file

@ -336,7 +336,7 @@ def calculate_simplifications(args, available_operators):
if name in available_operators: if name in available_operators:
s = sorted(lookup.items()); s = sorted(lookup.items());
for i, (a_truthtable, a_expression) in enumerate(s): for i, (a_truthtable, a_expression) in enumerate(s):
print(f'i = {i}'); # print(f'i = {i}');
for b_truthtable, b_expression in s: for b_truthtable, b_expression in s:
# x ? y : z # x ? y : z
ternary_truthtable = function( ternary_truthtable = function(
@ -378,7 +378,7 @@ def get_simplifications(args, available_operators):
print(); print();
print("You have selected ternary operators, so this WILL " print("You have selected ternary operators, so this WILL "
"take time. Weeks."); "take time. This will probably take weeks to run.");
print(); print();