We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e72b530 commit c47859dCopy full SHA for c47859d
pyk/src/pyk/proof/reachability.py
@@ -512,9 +512,10 @@ def one_line_summary(self) -> str:
512
terminal = len(self.terminal)
513
stuck = len(self.kcfg.stuck)
514
passed = len([cover for cover in self.kcfg.covers() if cover.target.id == self.target])
515
+ refuted = len(self.node_refutations)
516
return (
517
super().one_line_summary
- + f'|{nodes} nodes|{pending} pending|{passed} passed|{failing} failing|{branches} branches|{vacuous} vacuous|{terminal} terminal|{stuck} stuck'
518
+ + f'|{nodes} nodes|{pending} pending|{passed} passed|{failing} failing|{branches} branches|{vacuous} vacuous|{terminal} terminal|{stuck} stuck|{refuted} refuted'
519
)
520
521
def get_refutation_id(self, node_id: int) -> str:
0 commit comments