Print model when it shows VSP

This commit is contained in:
Brandon Rozek 2024-10-03 21:47:12 -04:00
parent c0ef204e48
commit 68788ecff6

View file

@ -304,6 +304,7 @@ if __name__ == "__main__":
solutions: List[Model] = parse_matrices(SourceFile(sys.stdin)) solutions: List[Model] = parse_matrices(SourceFile(sys.stdin))
print(f"Parsed {len(solutions)} matrices") print(f"Parsed {len(solutions)} matrices")
for i, (model, interpretation) in enumerate(solutions): for i, (model, interpretation) in enumerate(solutions):
if args['verbose']: vsp_result = has_vsp(model, interpretation)
print(vsp_result)
if args['verbose'] or vsp_result.has_vsp:
print(model) print(model)
print(has_vsp(model, interpretation))