Skip to content

Commit

Permalink
Change default fast-check-subsumption to false (#2303)
Browse files Browse the repository at this point in the history
* Change default `fast-check-subsumption` to `false`; remove `--no-fast-check-subsumption`

* Set Version: 1.0.457

---------

Co-authored-by: devops <[email protected]>
  • Loading branch information
palinatolmach and devops authored Feb 19, 2024
1 parent 6d8b11d commit 88c6735
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 10 deletions.
2 changes: 1 addition & 1 deletion kevm-pyk/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 = "kevm-pyk"
version = "1.0.456"
version = "1.0.457"
description = ""
authors = [
"Runtime Verification, Inc. <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion kevm-pyk/src/kevm_pyk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
from typing import Final


VERSION: Final = '1.0.456'
VERSION: Final = '1.0.457'
8 changes: 1 addition & 7 deletions kevm-pyk/src/kevm_pyk/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,16 +70,10 @@ def kprove_args(self) -> ArgumentParser:
args.add_argument(
'--fast-check-subsumption',
dest='fast_check_subsumption',
default=True,
default=False,
action='store_true',
help='Use fast-check on k-cell to determine subsumption.',
)
args.add_argument(
'--no-fast-check-subsumption',
dest='fast_check_subsumption',
action='store_false',
help='Do not use fast-check on k-cell to determine subsumption.',
)
return args

@cached_property
Expand Down
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.456
1.0.457

0 comments on commit 88c6735

Please sign in to comment.