-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable generating KEVM claims from the basic blocks of Kontrol KCFGs (#…
…262) * kontrol/{foundry,__main__}: add option to generate a list of KEVM claims from a given foundry proof * kontrol/{foundry,__main__}: add option for where to generate KEVM claim files at * kontrol/foundry: avoid duplicate hyphens in module name * kontrol/foundry: better filtering of claims that wont work in KEVM * kontrol/foundry: only include edge basic blocks, not ndbranches * kontrol/foundry: correction to how we exclude foundry claims * kontrol/foundry: do not duplicate source/target id in claim name * kontrol/foundry: also filter out rules with call_foundry helper * kontrol/foundry: filter out claims with terminal LHS too * kontrol/foundry: no commas in module names * kontrol/foundry: limit more foundry-specific klabels from being printed to kevm claims * kontrol/foundry: allow for empty claims by not generating the file * Set Version: 0.1.105 * poetry.lock: update * Set Version: 0.1.109 * Set Version: 0.1.112 * kontrol/foundry.py: simpler way to calculate new module name * kontrol/foundry: get list of productions to exclude from KEVM claims from definition directly * Set Version: 0.1.114 * kontrol/foundry: grab klabel of productions, not sentence label --------- Co-authored-by: devops <[email protected]>
- Loading branch information
Showing
6 changed files
with
88 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.1.113 | ||
0.1.114 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" | |
|
||
[tool.poetry] | ||
name = "kontrol" | ||
version = "0.1.113" | ||
version = "0.1.114" | ||
description = "Foundry integration for KEVM" | ||
authors = [ | ||
"Runtime Verification, Inc. <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ | |
if TYPE_CHECKING: | ||
from typing import Final | ||
|
||
VERSION: Final = '0.1.113' | ||
VERSION: Final = '0.1.114' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters