Skip to content

Commit 3d23575

Browse files
committed
kevm-pyk/__main__: more clear about status of proofs
1 parent 8f91400 commit 3d23575

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

kevm-pyk/src/kevm_pyk/__main__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,11 @@ def exec_foundry_list(
446446
total_nodes = len(kcfg.nodes)
447447
frontier_nodes = len(kcfg.frontier)
448448
stuck_nodes = len(kcfg.stuck)
449-
proven = 'passed' if frontier_nodes + stuck_nodes == 0 else 'failed'
449+
proven = 'failed'
450+
if stuck_nodes == 0:
451+
proven = 'pending'
452+
if frontier_nodes == 0:
453+
proven = 'passed'
450454
print(f'{kcfg_name}: {proven}')
451455
if details:
452456
print(f' nodes: {total_nodes}')

0 commit comments

Comments
 (0)