Skip to content

Commit

Permalink
Add # of refuted nodes to status bar display
Browse files Browse the repository at this point in the history
  • Loading branch information
nwatson22 committed Aug 6, 2024
1 parent e72b530 commit c47859d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyk/src/pyk/proof/reachability.py
Original file line number Diff line number Diff line change
Expand Up @@ -512,9 +512,10 @@ def one_line_summary(self) -> str:
terminal = len(self.terminal)
stuck = len(self.kcfg.stuck)
passed = len([cover for cover in self.kcfg.covers() if cover.target.id == self.target])
refuted = len(self.node_refutations)
return (
super().one_line_summary
+ f'|{nodes} nodes|{pending} pending|{passed} passed|{failing} failing|{branches} branches|{vacuous} vacuous|{terminal} terminal|{stuck} stuck'
+ f'|{nodes} nodes|{pending} pending|{passed} passed|{failing} failing|{branches} branches|{vacuous} vacuous|{terminal} terminal|{stuck} stuck|{refuted} refuted'
)

def get_refutation_id(self, node_id: int) -> str:
Expand Down

0 comments on commit c47859d

Please sign in to comment.