This commit is contained in:
Brandon Rozek 2025-10-29 15:17:48 -04:00 committed by GitHub
commit 3f2f9431fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

2
vsp.py
View file

@ -47,7 +47,7 @@ def has_vsp(model: Model, impfunction: ModelFunction,
# x -> y does not take a designiated value
I: List[Tuple[ModelValue, ModelValue]] = []
for (x, y) in product(model.carrier_set, model.carrier_set):
for (x, y) in product(model.designated_values, model.designated_values):
if impfunction(x, y) not in model.designated_values:
I.append((x, y))