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 574932f commit 2942eaeCopy full SHA for 2942eae
kevm-pyk/src/kevm_pyk/__main__.py
@@ -504,11 +504,12 @@ def exec_foundry_list(
504
for kcfg_file in paths:
505
with open(kcfg_file, 'r') as kf:
506
kcfg = KCFG.from_dict(json.loads(kf.read()))
507
+ kcfg_name = kcfg_file.name[0:-5]
508
total_nodes = len(kcfg.nodes)
509
frontier_nodes = len(kcfg.frontier)
510
stuck_nodes = len(kcfg.stuck)
511
proven = 'passed' if frontier_nodes + stuck_nodes == 0 else 'failed'
- print(f'{kcfg_file}: {proven}')
512
+ print(f'{kcfg_name}: {proven}')
513
if details:
514
print(f' nodes: {total_nodes}')
515
print(f' frontier: {frontier_nodes}')
0 commit comments