2024-05-09 17:08:15 -04:00
|
|
|
|
"""
|
|
|
|
|
Parses the Magic Ugly Data File Format
|
|
|
|
|
|
|
|
|
|
Assumes the base logic is R with no extra connectives
|
|
|
|
|
"""
|
|
|
|
|
import sys
|
|
|
|
|
from typing import TextIO, List, Optional, Tuple, Set, Dict
|
|
|
|
|
|
|
|
|
|
from model import Model, ModelValue, ModelFunction
|
|
|
|
|
from logic import (
|
|
|
|
|
Implication,
|
|
|
|
|
Conjunction,
|
|
|
|
|
Negation,
|
|
|
|
|
Disjunction
|
|
|
|
|
)
|
2024-05-12 13:03:28 -04:00
|
|
|
|
from vsp import has_vsp
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
|
|
|
|
def parse_matrices(infile: TextIO) -> List[Tuple[Model, Dict]]:
|
|
|
|
|
next(infile) # Skip header line
|
|
|
|
|
|
|
|
|
|
solutions: List[Tuple[Model, Dict]] = []
|
|
|
|
|
|
|
|
|
|
while True:
|
|
|
|
|
size = parse_size(infile)
|
|
|
|
|
if size is None:
|
|
|
|
|
break
|
|
|
|
|
|
|
|
|
|
carrier_set = carrier_set_from_size(size)
|
|
|
|
|
|
|
|
|
|
while True:
|
|
|
|
|
mnegation = parse_negation(infile, size)
|
|
|
|
|
if mnegation is None:
|
|
|
|
|
break
|
|
|
|
|
|
|
|
|
|
while True:
|
|
|
|
|
result = parse_order(infile, size)
|
|
|
|
|
if result is None:
|
|
|
|
|
break
|
|
|
|
|
mconjunction, mdisjunction = result
|
|
|
|
|
|
|
|
|
|
while True:
|
|
|
|
|
designated_values = parse_designated(infile, size)
|
|
|
|
|
if designated_values is None:
|
|
|
|
|
break
|
|
|
|
|
|
2024-05-12 13:03:28 -04:00
|
|
|
|
results = parse_implication(infile, size)
|
|
|
|
|
if result is None:
|
|
|
|
|
break
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
2024-05-12 13:03:28 -04:00
|
|
|
|
for mimplication in results:
|
2024-05-09 17:08:15 -04:00
|
|
|
|
logical_operations = {
|
2024-05-29 14:08:03 -04:00
|
|
|
|
mnegation, mimplication
|
2024-05-09 17:08:15 -04:00
|
|
|
|
}
|
2024-05-29 14:08:03 -04:00
|
|
|
|
model = Model(carrier_set, logical_operations, designated_values, name=str(len(solutions)))
|
2024-05-09 17:08:15 -04:00
|
|
|
|
interpretation = {
|
|
|
|
|
Negation: mnegation,
|
|
|
|
|
Implication: mimplication
|
|
|
|
|
}
|
2024-05-29 14:08:03 -04:00
|
|
|
|
if mconjunction is not None:
|
|
|
|
|
logical_operations.add(mconjunction)
|
|
|
|
|
interpretation[Conjunction] = mconjunction
|
|
|
|
|
if mdisjunction is not None:
|
|
|
|
|
logical_operations.add(mdisjunction)
|
|
|
|
|
interpretation[Disjunction] = mdisjunction
|
|
|
|
|
|
2024-05-09 17:08:15 -04:00
|
|
|
|
solutions.append((model, interpretation))
|
2024-05-29 14:08:03 -04:00
|
|
|
|
print(f"Parsed Matrix {model.name}")
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
|
|
|
|
return solutions
|
|
|
|
|
|
|
|
|
|
def carrier_set_from_size(size: int):
|
2024-05-29 14:08:03 -04:00
|
|
|
|
"""
|
|
|
|
|
Construct a carrier set of model values
|
|
|
|
|
based on the desired size.
|
|
|
|
|
"""
|
2024-05-09 17:08:15 -04:00
|
|
|
|
return {
|
|
|
|
|
mvalue_from_index(i) for i in range(size + 1)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def parse_size(infile: TextIO) -> Optional[int]:
|
2024-05-29 14:08:03 -04:00
|
|
|
|
"""
|
|
|
|
|
Parse the line representing the matrix size.
|
|
|
|
|
NOTE: Elements are represented in hexidecimal.
|
|
|
|
|
"""
|
2024-05-09 17:08:15 -04:00
|
|
|
|
size = int(next(infile), 16)
|
|
|
|
|
if size == -1:
|
|
|
|
|
return None
|
|
|
|
|
assert size > 0, "Unexpected size"
|
|
|
|
|
return size
|
2024-05-12 13:03:28 -04:00
|
|
|
|
|
2024-05-09 17:08:15 -04:00
|
|
|
|
def parse_negation(infile: TextIO, size: int) -> Optional[ModelFunction]:
|
2024-05-29 14:08:03 -04:00
|
|
|
|
"""
|
|
|
|
|
Parse the line representing the negation table.
|
|
|
|
|
"""
|
2024-05-09 17:08:15 -04:00
|
|
|
|
line = next(infile).strip()
|
|
|
|
|
if line == '-1':
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
row = line.split(" ")
|
|
|
|
|
assert len(row) == size + 1, "Negation table doesn't match size"
|
|
|
|
|
mapping = {}
|
2024-05-12 13:03:28 -04:00
|
|
|
|
|
2024-05-09 17:08:15 -04:00
|
|
|
|
for i, j in zip(range(size + 1), row):
|
|
|
|
|
x = mvalue_from_index(i)
|
|
|
|
|
y = parse_mvalue(j)
|
|
|
|
|
mapping[(x, )] = y
|
2024-05-12 13:03:28 -04:00
|
|
|
|
|
2024-05-29 14:08:03 -04:00
|
|
|
|
return ModelFunction(1, mapping, "¬")
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def mvalue_from_index(i: int):
|
2024-05-29 14:08:03 -04:00
|
|
|
|
"""
|
|
|
|
|
Given an index, return the hexidecimal
|
|
|
|
|
representation of the model value.
|
|
|
|
|
"""
|
2024-05-09 17:08:15 -04:00
|
|
|
|
return ModelValue(f"a{hex(i)[-1]}")
|
|
|
|
|
|
|
|
|
|
def parse_mvalue(x: str) -> ModelValue:
|
2024-05-29 14:08:03 -04:00
|
|
|
|
"""
|
|
|
|
|
Parse an element and return the model value.
|
|
|
|
|
"""
|
2024-05-09 17:08:15 -04:00
|
|
|
|
return mvalue_from_index(int(x, 16))
|
|
|
|
|
|
|
|
|
|
def determine_cresult(size: int, ordering: Dict[ModelValue, ModelValue], a: ModelValue, b: ModelValue) -> ModelValue:
|
2024-05-29 14:08:03 -04:00
|
|
|
|
"""
|
|
|
|
|
Determine what a ∧ b should be given the ordering table.
|
|
|
|
|
"""
|
2024-05-09 17:08:15 -04:00
|
|
|
|
for i in range(size + 1):
|
|
|
|
|
c = mvalue_from_index(i)
|
2024-05-28 13:51:29 -04:00
|
|
|
|
|
2024-05-09 17:08:15 -04:00
|
|
|
|
if not ordering[(c, a)]:
|
|
|
|
|
continue
|
|
|
|
|
if not ordering[(c, b)]:
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
invalid = False
|
|
|
|
|
for j in range(size + 1):
|
|
|
|
|
d = mvalue_from_index(j)
|
|
|
|
|
if c == d:
|
|
|
|
|
continue
|
|
|
|
|
if ordering[(c, d)]:
|
|
|
|
|
if ordering[(d, a)] and ordering [(d, b)]:
|
|
|
|
|
invalid = True
|
2024-05-12 13:03:28 -04:00
|
|
|
|
|
2024-05-09 17:08:15 -04:00
|
|
|
|
if not invalid:
|
|
|
|
|
return c
|
|
|
|
|
|
|
|
|
|
def determine_dresult(size: int, ordering: Dict[ModelValue, ModelValue], a: ModelValue, b: ModelValue) -> ModelValue:
|
2024-05-29 14:08:03 -04:00
|
|
|
|
"""
|
|
|
|
|
Determine what a ∨ b should be given the ordering table.
|
|
|
|
|
"""
|
2024-05-09 17:08:15 -04:00
|
|
|
|
for i in range(size + 1):
|
|
|
|
|
c = mvalue_from_index(i)
|
|
|
|
|
if not ordering[(a, c)]:
|
|
|
|
|
continue
|
|
|
|
|
if not ordering[(b, c)]:
|
|
|
|
|
continue
|
2024-05-12 13:03:28 -04:00
|
|
|
|
|
2024-05-09 17:08:15 -04:00
|
|
|
|
invalid = False
|
|
|
|
|
|
|
|
|
|
for j in range(size + 1):
|
|
|
|
|
d = mvalue_from_index(j)
|
|
|
|
|
if d == c:
|
|
|
|
|
continue
|
|
|
|
|
if ordering[(d, c)]:
|
|
|
|
|
if ordering[(a, d)] and ordering[(b, d)]:
|
|
|
|
|
invalid = True
|
|
|
|
|
|
|
|
|
|
if not invalid:
|
|
|
|
|
return c
|
|
|
|
|
|
|
|
|
|
def parse_order(infile: TextIO, size: int) -> Optional[Tuple[ModelFunction, ModelFunction]]:
|
2024-05-29 14:08:03 -04:00
|
|
|
|
"""
|
|
|
|
|
Parse the line representing the ordering table
|
|
|
|
|
"""
|
2024-05-09 17:08:15 -04:00
|
|
|
|
line = next(infile).strip()
|
|
|
|
|
if line == '-1':
|
2024-05-12 13:03:28 -04:00
|
|
|
|
return None
|
|
|
|
|
|
2024-05-09 17:08:15 -04:00
|
|
|
|
table = line.split(" ")
|
|
|
|
|
|
|
|
|
|
assert len(table) == (size + 1)**2
|
|
|
|
|
|
|
|
|
|
omapping = {}
|
|
|
|
|
table_i = 0
|
|
|
|
|
|
|
|
|
|
for i in range(size + 1):
|
|
|
|
|
x = mvalue_from_index(i)
|
|
|
|
|
for j in range(size + 1):
|
|
|
|
|
y = mvalue_from_index(j)
|
|
|
|
|
omapping[(x, y)] = table[table_i] == '1'
|
|
|
|
|
table_i += 1
|
|
|
|
|
|
|
|
|
|
cmapping = {}
|
|
|
|
|
dmapping = {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for i in range(size + 1):
|
|
|
|
|
x = mvalue_from_index(i)
|
|
|
|
|
for j in range(size + 1):
|
|
|
|
|
y = mvalue_from_index(j)
|
|
|
|
|
|
2024-05-29 14:08:03 -04:00
|
|
|
|
cresult = determine_cresult(size, omapping, x, y)
|
|
|
|
|
if cresult is None:
|
|
|
|
|
print("[Warning] Conjunction and Disjunction are not well-defined")
|
|
|
|
|
print(f"{x} ∧ {y} = ??")
|
|
|
|
|
return None, None
|
|
|
|
|
cmapping[(x, y)] = cresult
|
|
|
|
|
|
|
|
|
|
dresult = determine_dresult(size, omapping, x, y)
|
|
|
|
|
if dresult is None:
|
|
|
|
|
print("[Warning] Conjunction and Disjunction are not well-defined")
|
|
|
|
|
print(f"{x} ∨ {y} = ??")
|
|
|
|
|
return None, None
|
|
|
|
|
dmapping[(x, y)] = dresult
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
|
|
|
|
|
2024-05-29 14:08:03 -04:00
|
|
|
|
mconjunction = ModelFunction(2, cmapping, "∧")
|
|
|
|
|
mdisjunction = ModelFunction(2, dmapping, "∨")
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
|
|
|
|
return mconjunction, mdisjunction
|
|
|
|
|
|
|
|
|
|
def parse_designated(infile: TextIO, size: int) -> Optional[Set[ModelValue]]:
|
2024-05-29 14:08:03 -04:00
|
|
|
|
"""
|
|
|
|
|
Parse the line representing which model values are designated.
|
|
|
|
|
"""
|
2024-05-09 17:08:15 -04:00
|
|
|
|
line = next(infile).strip()
|
|
|
|
|
if line == '-1':
|
|
|
|
|
return None
|
2024-05-12 13:03:28 -04:00
|
|
|
|
|
2024-05-09 17:08:15 -04:00
|
|
|
|
row = line.split(" ")
|
|
|
|
|
assert len(row) == size + 1, "Designated table doesn't match size"
|
|
|
|
|
|
|
|
|
|
designated_values = set()
|
|
|
|
|
|
|
|
|
|
for i, j in zip(range(size + 1), row):
|
|
|
|
|
if j == '1':
|
|
|
|
|
x = mvalue_from_index(i)
|
|
|
|
|
designated_values.add(x)
|
|
|
|
|
|
|
|
|
|
return designated_values
|
|
|
|
|
|
|
|
|
|
|
2024-05-12 13:03:28 -04:00
|
|
|
|
def parse_implication(infile: TextIO, size: int) -> Optional[List[ModelFunction]]:
|
2024-05-29 14:08:03 -04:00
|
|
|
|
"""
|
|
|
|
|
Parse the line representing the list of implication
|
|
|
|
|
tables.
|
|
|
|
|
"""
|
2024-05-09 17:08:15 -04:00
|
|
|
|
line = next(infile).strip()
|
|
|
|
|
if line == '-1':
|
|
|
|
|
return None
|
|
|
|
|
|
2024-05-12 13:03:28 -04:00
|
|
|
|
# Split and remove the last '-1' character
|
|
|
|
|
table = line.split(" ")[:-1]
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
2024-05-12 13:03:28 -04:00
|
|
|
|
assert len(table) % (size + 1)**2 == 0
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
|
|
|
|
table_i = 0
|
2024-05-12 13:03:28 -04:00
|
|
|
|
mimplications: List[ModelFunction] = []
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
2024-05-12 13:03:28 -04:00
|
|
|
|
for _ in range(len(table) // (size + 1)**2):
|
|
|
|
|
mapping = {}
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
2024-05-12 13:03:28 -04:00
|
|
|
|
for i in range(size + 1):
|
|
|
|
|
x = mvalue_from_index(i)
|
|
|
|
|
for j in range(size + 1):
|
|
|
|
|
y = mvalue_from_index(j)
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
2024-05-12 13:03:28 -04:00
|
|
|
|
r = parse_mvalue(table[table_i])
|
|
|
|
|
table_i += 1
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
2024-05-12 13:03:28 -04:00
|
|
|
|
mapping[(x, y)] = r
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
2024-05-29 14:08:03 -04:00
|
|
|
|
mimplication = ModelFunction(2, mapping, "→")
|
2024-05-12 13:03:28 -04:00
|
|
|
|
mimplications.append(mimplication)
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
2024-05-12 13:03:28 -04:00
|
|
|
|
return mimplications
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
2024-05-12 13:03:28 -04:00
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2024-05-09 17:08:15 -04:00
|
|
|
|
solutions: List[Model] = parse_matrices(sys.stdin)
|
|
|
|
|
print(f"Parsed {len(solutions)} matrices")
|
2024-05-12 13:03:28 -04:00
|
|
|
|
for i, (model, interpretation) in enumerate(solutions):
|
2024-05-29 14:08:03 -04:00
|
|
|
|
print(model)
|
|
|
|
|
print(has_vsp(model, interpretation))
|