This repository has been archived by the owner on Apr 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I'm trying to simplify the kontrol code that computes failure logs for each of the failing proofs, and I thought maybe it would be simpler if we could just pass around the Proof object and have any necessary info be available from there. We already have functions of `Proof` that pertain to the proof status. Currently in KEVM to get the failure log, we have to call a function separately when we detect a proof has failed that computes this log, which requires a `KCFGExplore`, and also takes a nontrivial amount of time. We then have to pass this around as part of a tuple. This makes the computing of the failure info automatically happen when a failing proof is detected, and saves the `APRFailureInfo` object as a field in the `APRProof`. The potential drawback I see to this is it would hurt performance on failing proofs if the user doesn't care about generating the `APRFailureInfo` for the proof. --------- Co-authored-by: devops <[email protected]>
- Loading branch information
Showing
3 changed files
with
16 additions
and
3 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.442 | ||
0.1.443 |
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 = "pyk" | ||
version = "0.1.442" | ||
version = "0.1.443" | ||
description = "" | ||
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