mirror of
https://github.com/Brandon-Rozek/matmod.git
synced 2025-12-19 05:10:25 +00:00
Removed a from model value names
This commit is contained in:
parent
bdc1f1e64d
commit
10d2e47665
2 changed files with 3 additions and 3 deletions
4
model.py
4
model.py
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue