Removed a from model value names

This commit is contained in:
Brandon Rozek 2024-11-26 15:52:20 -05:00
parent bdc1f1e64d
commit 10d2e47665
2 changed files with 3 additions and 3 deletions

View file

@ -255,7 +255,7 @@ def model_closure(initial_set: Set[ModelValue], mfunctions: Set[ModelFunction],
new_elements.add(element)
# Optimization: Break out of computation
# early when top or bottom element is foun
# early when forbidden element is found
if forbidden_element is not None and element == forbidden_element:
forbidden_found = True
break
@ -287,7 +287,7 @@ def model_closure(initial_set: Set[ModelValue], mfunctions: Set[ModelFunction],
new_elements.add(element)
# Optimization: Break out of computation
# early when top or bottom element is foun
# early when forbidden element is found
if forbidden_element is not None and element == forbidden_element:
forbidden_found = True
break