Skip to content

Commit

Permalink
#60: added possibility of seeing sat
Browse files Browse the repository at this point in the history
  • Loading branch information
lollospadalaser committed Aug 20, 2024
1 parent 0dd633e commit bba3579
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sxpat/xplore.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ def explore_grid(specs_obj: TemplateSpecs):
execution_time = time.time() - start_time

cur_status = results[0].status
pprint.warning(f'Cell({lpp},{ppo}) at iteration {i} -> {cur_status.upper()}')
if cur_status in (UNSAT, UNKNOWN):
pprint.warning(f'Cell({lpp},{ppo}) at iteration {i} -> {cur_status.upper()}')

# store model
this_model_info = Model(id=0, status=cur_status.upper(), cell=(lpp, ppo), et=et, iteration=i,
Expand Down

0 comments on commit bba3579

Please sign in to comment.