-
Notifications
You must be signed in to change notification settings - Fork 3
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
506 refactor value handling #511
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
3e28534
Split TypedLocal sort into subsorts
jberthold 90c1a38
Avoid non-deterministic results due to generous matching
jberthold a15a980
declare #buildUpdate to be total
jberthold fe2b2f3
notes about failure cases in #readProjection
jberthold c3ac349
Add labelled rule to stop on program errors
jberthold d8b0df7
Introduce Evaluation sort for heating/cooling, remove `#readOperand`
jberthold 249a0e2
use heating/cooling for #setLocalValue
jberthold d20444c
use heating/cooling for #cast
jberthold 12ba50e
use heating/cooling for #compute and #applyUnOp
jberthold 517f031
use seqstrict, fix OperandError for UnOp
jberthold 57c1fdb
use heating/cooling in more control-flow constructs
jberthold 0b5a493
explicitly discard continuation in all execTerminator rewrites
jberthold 5bf51ae
Use dedicated CastError sort instead of unspecific string error
jberthold cc522c0
Set Version: 0.3.106
rv-auditor 6dc9c4a
declare buildUpdate use sites as preserving definedness
jberthold 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 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 = "kmir" | ||
version = "0.3.105" | ||
version = "0.3.106" | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from typing import Final | ||
|
||
VERSION: Final = '0.3.105' | ||
VERSION: Final = '0.3.106' |
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.
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.
I am trying to think of what this looks like in the mir code. What is an example of this?
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.
The new rule is for the case where local
_0
has not been written to (it is still sortNewLocal
) but the function returns. That happens regularly when a function returns nothing (i.e., unit). We used to "write" thenoValue
as a NoOp but now the sort is different so we should skip it.