Skip to content

Commit

Permalink
Fix models not being generated (#244)
Browse files Browse the repository at this point in the history
* Pass counterexample_info to run_prover

* Set Version: 0.1.95

* Set Version: 0.1.97

---------

Co-authored-by: devops <[email protected]>
Co-authored-by: palinatolmach <[email protected]>
  • Loading branch information
3 people authored Dec 14, 2023
1 parent d9075a9 commit 1df89b6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.96
0.1.97
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "kontrol"
version = "0.1.96"
version = "0.1.97"
description = "Foundry integration for KEVM"
authors = [
"Runtime Verification, Inc. <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion src/kontrol/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
if TYPE_CHECKING:
from typing import Final

VERSION: Final = '0.1.96'
VERSION: Final = '0.1.97'
1 change: 1 addition & 0 deletions src/kontrol/prove.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ def init_and_run_proof(test: FoundryTest) -> Proof:
prove_options.break_on_jumpi, prove_options.break_on_calls
),
terminal_rules=KEVMSemantics.terminal_rules(prove_options.break_every_step),
counterexample_info=prove_options.counterexample_info,
)
return proof

Expand Down

0 comments on commit 1df89b6

Please sign in to comment.