-
Notifications
You must be signed in to change notification settings - Fork 44
Use entire goal in proof strategy #1936
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
rv-jenkins
merged 27 commits into
runtimeverification:master
from
ana-pantilie:use-entire-goal-in-strategy
Jul 8, 2020
Merged
Changes from 25 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
02dda6d
Breadth limit: handle for prove
ana-pantilie 95e35f4
Strategy.Verification: replace Pattern with OrPattern
ana-pantilie b3dafc3
Remove redundant constraints
ana-pantilie ccfe7c3
Remove unused import
ana-pantilie 9af74e2
Fix tests
ana-pantilie 8e1b5da
Remove unused imports
ana-pantilie 9dc7176
Add unit tests
ana-pantilie cc650ff
Add integration tests
ana-pantilie 95cc0b7
Clean-up
ana-pantilie 2613fab
Address review comments
ana-pantilie ccfb60a
Merge branch 'master' into breadth-limit-prove
ana-pantilie cc36c4e
Regenerate golden file
ana-pantilie 3ff1bc9
Strategies.Verification: replace (Pattern Variable) with Reachability…
ana-pantilie c3d85cf
Merge remote-tracking branch 'upstream/master' into use-entire-goal-i…
ana-pantilie 468791d
kore-repl: keep entire goal in execution graph
ana-pantilie 3d780e8
Strategies.Verification: remove redundant function
ana-pantilie b0f950b
Repl: use stored goal instead of generating claims
ana-pantilie 458c4fd
Clean-up
ana-pantilie 9c77dd4
Clean-up
ana-pantilie 9be12ba
Repl: add dest (destination) command
ana-pantilie ff830e2
Clean-up
ana-pantilie 7e19e66
Address review comment
ana-pantilie 63a4240
Address review comments
ana-pantilie 0ff5bc1
Revert + fix
ana-pantilie ae469d1
Merge remote-tracking branch 'upstream/master' into use-entire-goal-i…
ana-pantilie 3e373c7
Merge remote-tracking branch 'upstream/master' into use-entire-goal-i…
ana-pantilie c448b00
Verification.verifyClaimStep: remove target argument
ana-pantilie File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This transformation is not valid, it takes
and turns it into
The correct thing to do is construct a
Pattern
usingright
andensures
, convert that into aTermLike
, and callmkExistsN
on thatTermLike
.Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, you're right, the second doesn't imply the first, so they're not equivalent. Thanks!
I noticed that there already is a
rhsToTerm
which only does some trivial simplification in the case theensures
is\top
.Pattern.toTermLike
also does this for\bottom
. ChangingrhsToTerm
to usePattern.fromTermLike
made some unit tests fail. Is there any reason we don't use this there? In any case, I just implementedrhsToPattern
without usingrhsToTerm
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the reason is only that, in some cases, we expect the
\and
structure of thePattern
to be preserved. Does that answer your question?