-
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.
Refactor production of initial terms, factor out method identification (
#313) * pyproject.toml, poetry.lock: add pytest-timeout * kontrol/{solc_to_k,prove}: add properties {Method,Constructor}.is_{test,testfail,setup} * kontrol/prove: make sure init state inserted after setUp execution is in KEVM invariant * kontrol/prove: thread through program argument to _final_cterm same as _init_cterm * kontrol/prove: factor out logic for setting up setUp or test states * kontrol/prove: make sure that initial state of subproofs is reusable on ORIGIN_CELL and CALLER_CELL * Set Version: 0.1.134 * kontrol/prove: inline dead parameter * kontrol/prove: correctly set use_init_code * kontrol/prove: make parameters required for _init_cterm * kontrol/prove: correct account to use for non-symbolic exploration * kontrol/prove: simpler empty bytes * kontrol/prove: rename variable * test-data/*.expected: update expected output * prove.py: factor our schedule variable again * poetry.lock: update * Set Version: 0.1.135 * kontrol/prove: remove entries which can be symbolic * kontrol/foundry: remove now unused method * kontrol/prove: use map update functionality * test-data/*.expected: update expected output --------- Co-authored-by: devops <[email protected]>
- Loading branch information
Showing
17 changed files
with
1,051 additions
and
207 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.134 | ||
0.1.135 |
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.134" | ||
version = "0.1.135" | ||
description = "Foundry integration for KEVM" | ||
authors = [ | ||
"Runtime Verification, Inc. <[email protected]>", | ||
|
@@ -29,6 +29,7 @@ pytest = "*" | |
pytest-cov = "*" | ||
pytest-mock = "*" | ||
pytest-xdist = "*" | ||
pytest-timeout = "*" | ||
pyupgrade = "*" | ||
|
||
[tool.poetry.scripts] | ||
|
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.134' | ||
VERSION: Final = '0.1.135' |
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
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
Oops, something went wrong.