mirror of
https://github.com/Brandon-Rozek/matmod.git
synced 2024-12-04 13:45:56 -05:00
Reworked hack
This commit is contained in:
parent
46e570103f
commit
a421e24544
1 changed files with 8 additions and 5 deletions
|
@ -58,14 +58,13 @@ def parse_matrices(infile: SourceFile) -> List[Tuple[Model, Dict]]:
|
||||||
def process_sizes(infile: SourceFile, header: UglyHeader, current_model_parts: ModelBuilder, solutions: List[Tuple[Model, Dict]]):
|
def process_sizes(infile: SourceFile, header: UglyHeader, current_model_parts: ModelBuilder, solutions: List[Tuple[Model, Dict]]):
|
||||||
"""Stage 1"""
|
"""Stage 1"""
|
||||||
|
|
||||||
# NOTE: In R3-PN the first size line is -1?
|
first_run = True
|
||||||
if header.necessitation:
|
|
||||||
next(infile)
|
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
print("Processing next size")
|
print("Processing next size")
|
||||||
try:
|
try:
|
||||||
size = parse_size(infile)
|
size = parse_size(infile, first_run)
|
||||||
|
first_run = False
|
||||||
except StopIteration:
|
except StopIteration:
|
||||||
# For some reason, when necessitation is enabled this doesn't
|
# For some reason, when necessitation is enabled this doesn't
|
||||||
# have a -1 on the last line
|
# have a -1 on the last line
|
||||||
|
@ -219,11 +218,15 @@ def carrier_set_from_size(size: int):
|
||||||
mvalue_from_index(i) for i in range(size + 1)
|
mvalue_from_index(i) for i in range(size + 1)
|
||||||
}
|
}
|
||||||
|
|
||||||
def parse_size(infile: SourceFile) -> Optional[int]:
|
def parse_size(infile: SourceFile, first_run: bool) -> Optional[int]:
|
||||||
"""
|
"""
|
||||||
Parse the line representing the matrix size.
|
Parse the line representing the matrix size.
|
||||||
"""
|
"""
|
||||||
size = int(next(infile))
|
size = int(next(infile))
|
||||||
|
# HACK: The first size line may be -1 due to a bug. Skip it
|
||||||
|
if size == -1 and first_run:
|
||||||
|
size = int(next(infile))
|
||||||
|
|
||||||
if size == -1:
|
if size == -1:
|
||||||
return None
|
return None
|
||||||
assert size > 0, f"Unexpected size at line {infile.current_line}"
|
assert size > 0, f"Unexpected size at line {infile.current_line}"
|
||||||
|
|
Loading…
Reference in a new issue