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
|
|
|
|
|
"""
|
2024-10-03 21:06:23 -04:00
|
|
|
|
import argparse
|
2024-05-09 17:08:15 -04:00
|
|
|
|
import sys
|
|
|
|
|
from typing import TextIO, List, Optional, Tuple, Set, Dict
|
|
|
|
|
|
|
|
|
|
from model import Model, ModelValue, ModelFunction
|
|
|
|
|
from logic import (
|
|
|
|
|
Implication,
|
|
|
|
|
Conjunction,
|
|
|
|
|
Negation,
|
2024-10-04 15:51:05 -04:00
|
|
|
|
Necessitation,
|
2024-05-09 17:08:15 -04:00
|
|
|
|
Disjunction
|
|
|
|
|
)
|
2024-05-12 13:03:28 -04:00
|
|
|
|
from vsp import has_vsp
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
2024-06-23 23:02:53 -04:00
|
|
|
|
class SourceFile:
|
|
|
|
|
def __init__(self, fileobj: TextIO):
|
|
|
|
|
self.fileobj = fileobj
|
|
|
|
|
self.current_line = 0
|
2024-10-25 14:52:12 -04:00
|
|
|
|
self.reststr = ""
|
2024-06-23 23:02:53 -04:00
|
|
|
|
|
|
|
|
|
def __next__(self):
|
2024-10-25 14:52:12 -04:00
|
|
|
|
if self.reststr != "":
|
|
|
|
|
return self.reststr
|
|
|
|
|
|
2024-06-23 23:02:53 -04:00
|
|
|
|
contents = next(self.fileobj)
|
|
|
|
|
self.current_line += 1
|
|
|
|
|
return contents
|
|
|
|
|
|
2024-10-25 14:52:12 -04:00
|
|
|
|
def set_reststr(self, reststr: str):
|
|
|
|
|
self.reststr = reststr
|
|
|
|
|
|
2024-10-03 23:34:59 -04:00
|
|
|
|
class UglyHeader:
|
2024-10-24 21:18:56 -04:00
|
|
|
|
def __init__(self, negation: bool, necessitation: bool, custom_model_functions: List[Tuple[int, str]]):
|
2024-10-03 23:34:59 -04:00
|
|
|
|
self.negation = negation
|
|
|
|
|
self.necessitation = necessitation
|
2024-10-24 21:18:56 -04:00
|
|
|
|
self.custom_model_functions = custom_model_functions
|
2024-06-23 23:02:53 -04:00
|
|
|
|
|
2024-10-04 14:09:18 -04:00
|
|
|
|
class ModelBuilder:
|
|
|
|
|
def __init__(self):
|
|
|
|
|
self.size : int = 0
|
|
|
|
|
self.carrier_set : Set[ModelValue] = set()
|
|
|
|
|
self.num_negation: int = 0
|
|
|
|
|
self.mnegation: Optional[ModelFunction] = None
|
|
|
|
|
self.num_order: int = 0
|
|
|
|
|
self.mconjunction: Optional[ModelFunction] = None
|
|
|
|
|
self.mdisjunction: Optional[ModelFunction] = None
|
|
|
|
|
self.num_designated: int = 0
|
|
|
|
|
self.designated_values: Set[ModelValue] = set()
|
|
|
|
|
self.num_implication: int = 0
|
|
|
|
|
self.mimplication: Optional[ModelFunction] = None
|
2024-10-04 15:51:05 -04:00
|
|
|
|
self.num_necessitation: int = 0
|
|
|
|
|
self.mnecessitation: Optional[ModelFunction] = None
|
2024-10-25 14:52:12 -04:00
|
|
|
|
self.custom_model_functions: List[Tuple[int, ModelFunction]]
|
|
|
|
|
|
|
|
|
|
class Stage:
|
|
|
|
|
def __init__(self, name: str):
|
|
|
|
|
self.name = name
|
|
|
|
|
self.next: Optional['Stage'] = None
|
|
|
|
|
self.previous: Optional['Stage'] = None
|
|
|
|
|
def __str__(self):
|
|
|
|
|
return self.name
|
|
|
|
|
|
|
|
|
|
class Stages:
|
|
|
|
|
def __init__(self):
|
|
|
|
|
self.stages: Dict[str, Stage] = {}
|
|
|
|
|
self.last_stage: Optional[Stage] = None
|
|
|
|
|
def add(self, name: str):
|
|
|
|
|
stage = Stage(name)
|
|
|
|
|
stage.next = stage
|
|
|
|
|
if self.last_stage is not None:
|
|
|
|
|
stage.previous = self.last_stage
|
|
|
|
|
self.last_stage.next = stage
|
|
|
|
|
else:
|
|
|
|
|
stage.previous = Stage("end")
|
|
|
|
|
|
|
|
|
|
self.stages[name] = stage
|
|
|
|
|
self.last_stage = stage
|
|
|
|
|
def next_stage(self, name):
|
|
|
|
|
return self.stages[name].next
|
|
|
|
|
def previous_stage(self, name):
|
|
|
|
|
return self.stages[name].previous
|
|
|
|
|
def get(self, name):
|
|
|
|
|
return self.stages[name]
|
|
|
|
|
|
|
|
|
|
def derive_stages(header: UglyHeader) -> Stages:
|
|
|
|
|
stages = Stages()
|
|
|
|
|
stages.add("size")
|
|
|
|
|
if header.negation:
|
|
|
|
|
stages.add("negation")
|
|
|
|
|
stages.add("order")
|
|
|
|
|
stages.add("designated")
|
|
|
|
|
stages.add("implication")
|
|
|
|
|
if header.necessitation:
|
|
|
|
|
stages.add("necessitation")
|
|
|
|
|
# TODO: Can't use -- as that can be a custom symbol
|
|
|
|
|
# for (acidity, symbol) in header.custom_model_functions:
|
|
|
|
|
# stages.add(f"custom--{acidity}--{symbol}")
|
|
|
|
|
stages.add("process_model")
|
|
|
|
|
|
|
|
|
|
# After processing the model, go to the previous stage
|
|
|
|
|
stages.get("process_model").next = stages.get("process_model").previous
|
|
|
|
|
|
|
|
|
|
return stages
|
|
|
|
|
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
2024-10-03 23:34:59 -04:00
|
|
|
|
def parse_matrices(infile: SourceFile) -> List[Tuple[Model, Dict]]:
|
|
|
|
|
solutions = [] # Reset
|
|
|
|
|
header = parse_header(infile)
|
2024-10-25 14:52:12 -04:00
|
|
|
|
stages = derive_stages(header)
|
|
|
|
|
first_run = True
|
2024-10-04 14:09:18 -04:00
|
|
|
|
current_model_parts = ModelBuilder()
|
2024-10-25 14:52:12 -04:00
|
|
|
|
stage = stages.get("size")
|
|
|
|
|
while True:
|
|
|
|
|
print("Current stage:", stage)
|
|
|
|
|
match stage.name:
|
|
|
|
|
case "end":
|
|
|
|
|
break
|
|
|
|
|
case "process_model":
|
|
|
|
|
process_model(current_model_parts, solutions)
|
|
|
|
|
stage = stage.next
|
|
|
|
|
case "size":
|
|
|
|
|
processed = process_sizes(infile, current_model_parts, first_run)
|
|
|
|
|
first_run = False
|
|
|
|
|
stage = stage.next if processed else stage.previous
|
|
|
|
|
case "negation":
|
|
|
|
|
processed = process_negations(infile, current_model_parts)
|
|
|
|
|
stage = stage.next if processed else stage.previous
|
|
|
|
|
case "order":
|
|
|
|
|
processed = process_orders(infile, current_model_parts)
|
|
|
|
|
stage = stage.next if processed else stage.previous
|
|
|
|
|
case "designated":
|
|
|
|
|
processed = process_designateds(infile, current_model_parts)
|
|
|
|
|
stage = stage.next if processed else stage.previous
|
|
|
|
|
case "implication":
|
|
|
|
|
processed = process_implications(infile, current_model_parts)
|
|
|
|
|
stage = stage.next if processed else stage.previous
|
|
|
|
|
case "necessitation":
|
|
|
|
|
processed = process_necessitations(infile, current_model_parts)
|
|
|
|
|
stage = stage.next if processed else stage.previous
|
|
|
|
|
case _:
|
|
|
|
|
raise NotImplementedError("Custom Connectives are not yet supported")
|
|
|
|
|
|
2024-10-04 14:09:18 -04:00
|
|
|
|
return solutions
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
2024-10-25 14:52:12 -04:00
|
|
|
|
def process_sizes(infile: SourceFile, current_model_parts: ModelBuilder, first_run: bool) -> bool:
|
|
|
|
|
try:
|
|
|
|
|
size = parse_size(infile, first_run)
|
|
|
|
|
except StopIteration:
|
|
|
|
|
return False
|
|
|
|
|
if size is None:
|
|
|
|
|
return False
|
2024-10-04 15:51:05 -04:00
|
|
|
|
|
2024-10-25 14:52:12 -04:00
|
|
|
|
carrier_set = carrier_set_from_size(size)
|
|
|
|
|
current_model_parts.size = size
|
|
|
|
|
current_model_parts.carrier_set = carrier_set
|
2024-10-04 15:51:05 -04:00
|
|
|
|
|
2024-10-25 14:52:12 -04:00
|
|
|
|
# Reset counts
|
|
|
|
|
current_model_parts.num_negation = 0
|
|
|
|
|
current_model_parts.num_order = 0
|
|
|
|
|
current_model_parts.num_designated = 0
|
|
|
|
|
current_model_parts.num_implication = 0
|
|
|
|
|
current_model_parts.num_necessitation = 0
|
|
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
def process_negations(infile: SourceFile, current_model_parts: ModelBuilder) -> bool:
|
2024-10-03 23:34:59 -04:00
|
|
|
|
"""Stage 2 (Optional)"""
|
2024-10-25 14:52:12 -04:00
|
|
|
|
mnegation = parse_single_negation(infile, current_model_parts.size)
|
|
|
|
|
if mnegation is None:
|
|
|
|
|
return False
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
2024-10-25 14:52:12 -04:00
|
|
|
|
current_model_parts.num_negation += 1
|
|
|
|
|
current_model_parts.mnegation = mnegation
|
2024-10-04 14:09:18 -04:00
|
|
|
|
|
2024-10-25 14:52:12 -04:00
|
|
|
|
# Reset counts
|
|
|
|
|
current_model_parts.num_order = 0
|
|
|
|
|
current_model_parts.num_designated = 0
|
|
|
|
|
current_model_parts.num_implication = 0
|
|
|
|
|
current_model_parts.num_necessitation = 0
|
2024-10-03 23:34:59 -04:00
|
|
|
|
|
2024-10-25 14:52:12 -04:00
|
|
|
|
return True
|
2024-10-03 23:34:59 -04:00
|
|
|
|
|
2024-10-25 14:52:12 -04:00
|
|
|
|
def process_orders(infile: SourceFile, current_model_parts: ModelBuilder) -> bool:
|
2024-10-03 23:34:59 -04:00
|
|
|
|
"""Stage 3"""
|
2024-10-25 14:52:12 -04:00
|
|
|
|
result = parse_single_order(infile, current_model_parts.size)
|
|
|
|
|
if result is None:
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
mconjunction, mdisjunction = result
|
|
|
|
|
current_model_parts.num_order += 1
|
|
|
|
|
current_model_parts.mconjunction = mconjunction
|
|
|
|
|
current_model_parts.mdisjunction = mdisjunction
|
|
|
|
|
|
|
|
|
|
# Reset counts
|
|
|
|
|
current_model_parts.num_designated = 0
|
|
|
|
|
current_model_parts.num_implication = 0
|
|
|
|
|
current_model_parts.num_necessitation = 0
|
|
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
def process_designateds(infile: SourceFile, current_model_parts: ModelBuilder) -> bool:
|
2024-10-03 23:34:59 -04:00
|
|
|
|
"""Stage 4"""
|
2024-10-25 14:52:12 -04:00
|
|
|
|
designated_values = parse_single_designated(infile, current_model_parts.size)
|
|
|
|
|
if designated_values is None:
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
current_model_parts.num_designated += 1
|
|
|
|
|
current_model_parts.designated_values = designated_values
|
|
|
|
|
|
|
|
|
|
# Reset counts
|
|
|
|
|
current_model_parts.num_implication = 0
|
|
|
|
|
current_model_parts.num_necessitation = 0
|
|
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
def process_implications(infile: SourceFile, current_model_parts: ModelBuilder) -> bool:
|
2024-10-03 23:34:59 -04:00
|
|
|
|
"""Stage 5"""
|
2024-10-25 14:52:12 -04:00
|
|
|
|
if infile.reststr == "":
|
|
|
|
|
infile.reststr = next(infile).strip()
|
2024-10-04 15:51:05 -04:00
|
|
|
|
|
2024-10-25 14:52:12 -04:00
|
|
|
|
mimplication, reststr = parse_single_implication(infile.reststr, infile.current_line, current_model_parts.size)
|
|
|
|
|
infile.reststr = reststr
|
|
|
|
|
if mimplication is None:
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
current_model_parts.num_implication += 1
|
|
|
|
|
current_model_parts.mimplication = mimplication
|
2024-10-04 15:51:05 -04:00
|
|
|
|
|
2024-10-25 14:52:12 -04:00
|
|
|
|
# Reset counts
|
|
|
|
|
current_model_parts.num_necessitation = 0
|
|
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
def process_necessitations(infile: SourceFile, current_model_parts: ModelBuilder) -> bool:
|
|
|
|
|
# TODO: In progress
|
|
|
|
|
if infile.reststr != "":
|
|
|
|
|
infile.reststr = next(infile).strip()
|
|
|
|
|
|
|
|
|
|
# TODO: This should match the implication way of doing things when
|
|
|
|
|
# custom conenctives are involved (returning reststr)
|
|
|
|
|
mnecessitation, reststr = parse_single_necessitation_from_str(infile.reststr, infile.current_line, current_model_parts.size)
|
|
|
|
|
infile.reststr = reststr
|
|
|
|
|
if mnecessitation is None:
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
current_model_parts.num_necessitation += 1
|
|
|
|
|
current_model_parts.mnecessitation = mnecessitation
|
|
|
|
|
|
|
|
|
|
return True
|
2024-10-03 23:34:59 -04:00
|
|
|
|
|
2024-10-04 14:09:18 -04:00
|
|
|
|
def process_model(mp: ModelBuilder, solutions: List[Tuple[Model, Dict]]):
|
2024-10-03 23:34:59 -04:00
|
|
|
|
"""Create Model"""
|
2024-10-04 14:09:18 -04:00
|
|
|
|
assert mp.mimplication is not None
|
|
|
|
|
assert len(mp.carrier_set) > 0
|
2024-10-25 14:52:12 -04:00
|
|
|
|
assert mp.size + 1 == len(mp.carrier_set)
|
2024-10-03 23:34:59 -04:00
|
|
|
|
|
2024-10-04 14:09:18 -04:00
|
|
|
|
logical_operations = { mp.mimplication }
|
2024-10-25 14:52:12 -04:00
|
|
|
|
model_name = f"{mp.size + 1}{'.' + str(mp.num_negation) if mp.num_negation != 0 else ''}.{mp.num_order}.{mp.num_designated}.{mp.num_implication}{'.' + str(mp.num_necessitation) if mp.num_necessitation != 0 else ''}"
|
2024-10-04 14:09:18 -04:00
|
|
|
|
model = Model(mp.carrier_set, logical_operations, mp.designated_values, name=model_name)
|
2024-10-03 23:34:59 -04:00
|
|
|
|
interpretation = {
|
2024-10-04 14:09:18 -04:00
|
|
|
|
Implication: mp.mimplication
|
2024-10-03 23:34:59 -04:00
|
|
|
|
}
|
2024-10-04 14:09:18 -04:00
|
|
|
|
if mp.mnegation is not None:
|
|
|
|
|
logical_operations.add(mp.mnegation)
|
|
|
|
|
interpretation[Negation] = mp.mnegation
|
|
|
|
|
if mp.mconjunction is not None:
|
|
|
|
|
logical_operations.add(mp.mconjunction)
|
|
|
|
|
interpretation[Conjunction] = mp.mconjunction
|
|
|
|
|
if mp.mdisjunction is not None:
|
|
|
|
|
logical_operations.add(mp.mdisjunction)
|
|
|
|
|
interpretation[Disjunction] = mp.mdisjunction
|
2024-10-04 15:51:05 -04:00
|
|
|
|
if mp.mnecessitation is not None:
|
|
|
|
|
logical_operations.add(mp.mnecessitation)
|
|
|
|
|
interpretation[Necessitation] = mp.mnecessitation
|
2024-10-03 23:34:59 -04:00
|
|
|
|
|
|
|
|
|
solutions.append((model, interpretation))
|
|
|
|
|
print(f"Parsed Matrix {model.name}")
|
|
|
|
|
|
|
|
|
|
def parse_header(infile: SourceFile) -> UglyHeader:
|
|
|
|
|
"""
|
|
|
|
|
Parse the header line from the ugly data format.
|
|
|
|
|
"""
|
|
|
|
|
header_line = next(infile).strip()
|
|
|
|
|
header_tokens = header_line.split(" ")
|
|
|
|
|
assert header_tokens[0] in ["0", "1"]
|
|
|
|
|
assert header_tokens[6] in ["0", "1"]
|
2024-10-24 21:18:56 -04:00
|
|
|
|
assert len(header_tokens) >= 7
|
2024-10-03 23:34:59 -04:00
|
|
|
|
negation_defined = bool(int(header_tokens[0]))
|
|
|
|
|
necessitation_defined = bool(int(header_tokens[6]))
|
2024-10-24 21:18:56 -04:00
|
|
|
|
num_custom_connectives = int(header_tokens[7])
|
|
|
|
|
custom_model_functions: List[Tuple[int, str]] = []
|
|
|
|
|
for i in range(num_custom_connectives):
|
|
|
|
|
arity = int(header_tokens[7 + (2 * i) + 1])
|
|
|
|
|
symbol = header_tokens[7 + (2 * i) + 2]
|
|
|
|
|
custom_model_functions.append((arity, symbol))
|
|
|
|
|
return UglyHeader(negation_defined, necessitation_defined, custom_model_functions)
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
2024-10-25 14:52:12 -04:00
|
|
|
|
def carrier_set_from_size(size: int) -> Set[ModelValue]:
|
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)
|
|
|
|
|
}
|
|
|
|
|
|
2024-10-15 10:28:16 -04:00
|
|
|
|
def parse_size(infile: SourceFile, first_run: bool) -> Optional[int]:
|
2024-05-29 14:08:03 -04:00
|
|
|
|
"""
|
|
|
|
|
Parse the line representing the matrix size.
|
|
|
|
|
"""
|
2024-10-24 21:21:39 -04:00
|
|
|
|
|
2024-06-15 11:46:53 -04:00
|
|
|
|
size = int(next(infile))
|
2024-10-24 21:21:39 -04:00
|
|
|
|
# HACK: When necessitation and custom connectives are enabled
|
|
|
|
|
# MaGIC may produce -1s at the beginning of the file
|
|
|
|
|
if first_run:
|
|
|
|
|
while size == -1:
|
|
|
|
|
size = int(next(infile))
|
2024-10-15 10:28:16 -04:00
|
|
|
|
|
2024-05-09 17:08:15 -04:00
|
|
|
|
if size == -1:
|
|
|
|
|
return None
|
2024-06-23 23:02:53 -04:00
|
|
|
|
assert size > 0, f"Unexpected size at line {infile.current_line}"
|
2024-05-09 17:08:15 -04:00
|
|
|
|
return size
|
2024-05-12 13:03:28 -04:00
|
|
|
|
|
2024-10-03 23:34:59 -04:00
|
|
|
|
def parse_single_negation(infile: SourceFile, 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(" ")
|
2024-06-23 23:02:53 -04:00
|
|
|
|
assert len(row) == size + 1, f"Negation table doesn't match size at line {infile.current_line}"
|
2024-05-09 17:08:15 -04:00
|
|
|
|
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
|
|
|
|
|
2024-10-25 14:52:12 -04:00
|
|
|
|
def mvalue_from_index(i: int) -> ModelValue:
|
2024-05-29 14:08:03 -04:00
|
|
|
|
"""
|
2024-06-15 11:46:53 -04:00
|
|
|
|
Given an index, return the
|
2024-05-29 14:08:03 -04:00
|
|
|
|
representation of the model value.
|
|
|
|
|
"""
|
2024-06-15 11:46:53 -04:00
|
|
|
|
return ModelValue(f"a{i}")
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
|
|
|
|
def parse_mvalue(x: str) -> ModelValue:
|
2024-05-29 14:08:03 -04:00
|
|
|
|
"""
|
|
|
|
|
Parse an element and return the model value.
|
|
|
|
|
"""
|
2024-06-15 11:46:53 -04:00
|
|
|
|
return mvalue_from_index(int(x))
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
|
|
|
|
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-06-23 23:02:53 -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
|
|
|
|
|
|
2024-10-04 15:51:05 -04:00
|
|
|
|
def parse_single_order(infile: SourceFile, 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(" ")
|
|
|
|
|
|
2024-06-23 23:02:53 -04:00
|
|
|
|
assert len(table) == (size + 1)**2, f"Order table doesn't match expected size at line {infile.current_line}"
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
2024-10-04 15:51:05 -04:00
|
|
|
|
def parse_single_designated(infile: SourceFile, 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(" ")
|
2024-06-23 23:02:53 -04:00
|
|
|
|
assert len(row) == size + 1, f"Designated table doesn't match expected size at line {infile.current_line}"
|
2024-05-09 17:08:15 -04:00
|
|
|
|
|
|
|
|
|
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-10-04 15:51:05 -04:00
|
|
|
|
def parse_single_implication(instr: str, line: int, size: int) -> Tuple[ModelFunction, str]:
|
|
|
|
|
"""
|
|
|
|
|
Take the current string, parse an implication table from it,
|
|
|
|
|
and return along with it the remainder of the string
|
|
|
|
|
"""
|
|
|
|
|
if instr == "-1":
|
|
|
|
|
return None, ""
|
|
|
|
|
|
|
|
|
|
table = instr.split(" ")
|
|
|
|
|
|
|
|
|
|
assert len(table) >= (size + 1)**2, f"Implication table does not match expected size at line {line}"
|
|
|
|
|
|
|
|
|
|
mapping = {}
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
|
|
r = parse_mvalue(table[table_i])
|
|
|
|
|
table_i += 1
|
|
|
|
|
|
|
|
|
|
mapping[(x, y)] = r
|
|
|
|
|
|
|
|
|
|
mimplication = ModelFunction(2, mapping, "→")
|
|
|
|
|
reststr = " ".join(table[(size + 1)**2:])
|
|
|
|
|
return mimplication, reststr
|
|
|
|
|
|
|
|
|
|
def parse_single_necessitation_from_str(instr: str, line: int, size: int) -> Optional[ModelFunction]:
|
|
|
|
|
"""
|
|
|
|
|
Parse the line representing the necessitation table.
|
|
|
|
|
"""
|
|
|
|
|
if instr == "-1":
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
row = instr.split(" ")
|
2024-10-25 14:52:12 -04:00
|
|
|
|
assert len(row) >= size + 1, f"Necessitation table doesn't match size at line {line}"
|
2024-10-04 15:51:05 -04:00
|
|
|
|
mapping = {}
|
|
|
|
|
|
|
|
|
|
for i, j in zip(range(size + 1), row):
|
|
|
|
|
x = mvalue_from_index(i)
|
|
|
|
|
y = parse_mvalue(j)
|
|
|
|
|
mapping[(x, )] = y
|
|
|
|
|
|
2024-10-25 14:52:12 -04:00
|
|
|
|
mnecessitation = ModelFunction(1, mapping, "!")
|
|
|
|
|
reststr = " ".join(row[(size + 1):])
|
2024-10-04 15:51:05 -04:00
|
|
|
|
|
2024-10-25 14:52:12 -04:00
|
|
|
|
return mnecessitation, reststr
|
2024-10-04 15:51:05 -04:00
|
|
|
|
|
2024-05-12 13:03:28 -04:00
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2024-10-03 21:06:23 -04:00
|
|
|
|
parser = argparse.ArgumentParser(description="VSP Checker")
|
|
|
|
|
parser.add_argument("--verbose", action='store_true', help="Print out all parsed matrices")
|
|
|
|
|
args = vars(parser.parse_args())
|
2024-10-04 14:09:18 -04:00
|
|
|
|
solutions = parse_matrices(SourceFile(sys.stdin))
|
2024-05-09 17:08:15 -04:00
|
|
|
|
print(f"Parsed {len(solutions)} matrices")
|
2024-10-04 13:22:40 -04:00
|
|
|
|
num_has_vsp = 0
|
2024-05-12 13:03:28 -04:00
|
|
|
|
for i, (model, interpretation) in enumerate(solutions):
|
2024-10-03 21:47:12 -04:00
|
|
|
|
vsp_result = has_vsp(model, interpretation)
|
|
|
|
|
print(vsp_result)
|
2024-10-04 13:22:40 -04:00
|
|
|
|
|
2024-10-03 21:47:12 -04:00
|
|
|
|
if args['verbose'] or vsp_result.has_vsp:
|
2024-10-03 21:06:23 -04:00
|
|
|
|
print(model)
|
2024-10-04 13:22:40 -04:00
|
|
|
|
|
|
|
|
|
if vsp_result.has_vsp:
|
|
|
|
|
num_has_vsp += 1
|
|
|
|
|
print(f"Tested {len(solutions)} models, {num_has_vsp} of which satisfy VSP")
|