Model of R that has VSP

This commit is contained in:
Brandon Rozek 2024-05-03 17:04:03 -04:00
parent e105c4bf5e
commit f3c82f090f
No known key found for this signature in database
GPG key ID: 26E457DA82C9F480
2 changed files with 188 additions and 14 deletions

183
R.py
View file

@ -11,7 +11,7 @@ from logic import (
Disjunction, Disjunction,
Rule, Rule,
) )
from model import Model, ModelFunction, ModelValue, violates_vsp from model import Model, ModelFunction, ModelValue, has_vsp, satisfiable
from generate_model import generate_model from generate_model import generate_model
@ -117,11 +117,182 @@ interpretation = {
# Generate models of R of a given size # Generate models of R of a given size
model_size = 2 # model_size = 2
satisfiable_models = generate_model(R_logic, model_size, print_model=True) # solutions = generate_model(R_logic, model_size, print_model=True)
print(f"There are {len(satisfiable_models)} satisfiable models of element length {model_size}") # print(f"There are {len(solutions)} satisfiable models of element length {model_size}")
for smodel in satisfiable_models: # for model, interpretation in solutions:
print(violates_vsp(smodel[0], smodel[1])) # print(has_vsp(model, interpretation))
######
# Smallest model for R that has the variable sharing property
a0 = ModelValue("a0")
a1 = ModelValue("a1")
a2 = ModelValue("a2")
a3 = ModelValue("a3")
a4 = ModelValue("a4")
a5 = ModelValue("a5")
carrier_set = { a0, a1, a2, a3, a4, a5 }
designated_values = {a1, a2, a3, a4, a5 }
mnegation = ModelFunction(1, {
a5: a0,
a4: a1,
a3: a3,
a2: a2,
a1: a4,
a0: a5
})
mimplication = ModelFunction(2, {
(a5, a5): a5,
(a5, a4): a0,
(a5, a3): a0,
(a5, a2): a0,
(a5, a1): a0,
(a5, a0): a0,
(a4, a5): a5,
(a4, a4): a1,
(a4, a3): a0,
(a4, a2): a0,
(a4, a1): a0,
(a4, a0): a0,
(a3, a5): a5,
(a3, a4): a3,
(a3, a3): a3,
(a3, a2): a0,
(a3, a1): a0,
(a3, a0): a0,
(a2, a5): a5,
(a2, a4): a2,
(a2, a3): a0,
(a2, a2): a2,
(a2, a1): a0,
(a2, a0): a0,
(a1, a5): a5,
(a1, a4): a4,
(a1, a3): a3,
(a1, a2): a2,
(a1, a1): a1,
(a1, a0): a0,
(a0, a5): a5,
(a0, a4): a5,
(a0, a3): a5,
(a0, a2): a5,
(a0, a1): a5,
(a0, a0): a5
})
mconjunction = ModelFunction(2, {
(a5, a5): a5,
(a5, a4): a4,
(a5, a3): a3,
(a5, a2): a2,
(a5, a1): a1,
(a5, a0): a0,
(a4, a5): a4,
(a4, a4): a4,
(a4, a3): a3,
(a4, a2): a2,
(a4, a1): a1,
(a4, a0): a0,
(a3, a5): a3,
(a3, a4): a3,
(a3, a3): a3,
(a3, a2): a1,
(a3, a1): a1,
(a3, a0): a0,
(a2, a5): a2,
(a2, a4): a2,
(a2, a3): a1,
(a2, a2): a2,
(a2, a1): a1,
(a2, a0): a0,
(a1, a5): a1,
(a1, a4): a1,
(a1, a3): a1,
(a1, a2): a1,
(a1, a1): a1,
(a1, a0): a0,
(a0, a5): a0,
(a0, a4): a0,
(a0, a3): a0,
(a0, a2): a0,
(a0, a1): a0,
(a0, a0): a0
})
mdisjunction = ModelFunction(2, {
(a5, a5): a5,
(a5, a4): a5,
(a5, a3): a5,
(a5, a2): a5,
(a5, a1): a5,
(a5, a0): a5,
(a4, a5): a5,
(a4, a4): a4,
(a4, a3): a4,
(a4, a2): a4,
(a4, a1): a4,
(a4, a0): a4,
(a3, a5): a5,
(a3, a4): a4,
(a3, a3): a3,
(a3, a2): a4,
(a3, a1): a3,
(a3, a0): a3,
(a2, a5): a5,
(a2, a4): a4,
(a2, a3): a4,
(a2, a2): a2,
(a2, a1): a2,
(a2, a0): a2,
(a1, a5): a5,
(a1, a4): a4,
(a1, a3): a3,
(a1, a2): a2,
(a1, a1): a1,
(a1, a0): a1,
(a0, a5): a5,
(a0, a4): a4,
(a0, a3): a3,
(a0, a2): a2,
(a0, a1): a1,
(a0, a0): a0
})
logical_operations = {
mnegation, mimplication, mconjunction, mdisjunction
}
R_model_6 = Model(carrier_set, logical_operations, designated_values)
interpretation = {
Negation: mnegation,
Conjunction: mconjunction,
Disjunction: mdisjunction,
Implication: mimplication
}
print("Satisfiable", satisfiable(R_logic, R_model_6, interpretation))
print("Has VSP?", has_vsp(R_model_6, interpretation))

View file

@ -212,15 +212,10 @@ def model_closure(initial_set: Set[ModelValue], mfunctions: Set[ModelFunction]):
return current_set return current_set
def violates_vsp(model: Model, interpretation: Dict[Operation, ModelFunction]) -> bool: def has_vsp(model: Model, interpretation: Dict[Operation, ModelFunction]) -> bool:
""" """
Tells you whether a model violates the Tells you whether a model violates the
variable sharing property. variable sharing property.
If it returns false, it is still possible that
the variable sharing property is violated
just that we didn't check for the appopriate
subalgebras.
""" """
impfunction = interpretation[Implication] impfunction = interpretation[Implication]
@ -233,6 +228,8 @@ def violates_vsp(model: Model, interpretation: Dict[Operation, ModelFunction]) -
if impfunction(x, y) not in model.designated_values: if impfunction(x, y) not in model.designated_values:
I.add((x, y)) I.add((x, y))
print("I", [(str(x), str(y)) for (x, y) in I])
# Construct the powerset without the empty set # Construct the powerset without the empty set
s = list(I) s = list(I)
I_power = chain.from_iterable(combinations(s, r) for r in range(1, len(s) + 1)) I_power = chain.from_iterable(combinations(s, r) for r in range(1, len(s) + 1))
@ -251,12 +248,18 @@ def violates_vsp(model: Model, interpretation: Dict[Operation, ModelFunction]) -
# If the carrier set intersects, then we violate VSP # If the carrier set intersects, then we violate VSP
if len(carrier_set_left & carrier_set_right) > 0: if len(carrier_set_left & carrier_set_right) > 0:
print("FAIL: Carrier sets intersect") continue
return True # print("FAIL: Carrier sets intersect")
# print(xys)
# return True
for (x2, y2) in product(carrier_set_left, carrier_set_right): for (x2, y2) in product(carrier_set_left, carrier_set_right):
if impfunction(x2, y2) in model.designated_values: if impfunction(x2, y2) in model.designated_values:
continue
print(f"({x2}, {y2}) take on a designated value") print(f"({x2}, {y2}) take on a designated value")
return True return True
return True
return False return False