.
This commit is contained in:
parent
04d997c031
commit
aeee25889e
1 changed files with 2 additions and 2 deletions
4
main.py
4
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();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue