-
Notifications
You must be signed in to change notification settings - Fork 274
Changes to intervals needed to merge VSD #5203
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
Closed
Closed
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
b70513a
(INT) Interval operations
a003056
(INT) Fix broken interval unit tests
hannes-steffenhagen-diffblue 5942219
(INT) Remove unnecessary construction of dstring
hannes-steffenhagen-diffblue b7a7123
(INT) Rename interval is_constant to is_single_value_interval
hannes-steffenhagen-diffblue 848b976
(INT) Rename is_true and is_false in interval expressions
hannes-steffenhagen-diffblue ff3dd1f
(INT) Make eval take an identifier instead of an exprt
hannes-steffenhagen-diffblue fe65713
(INT) Make constructors take constant references instead of values
hannes-steffenhagen-diffblue bff9516
(INT) Apply clang-format
hannes-steffenhagen-diffblue 0ed412f
(INT) Remove unnecessary constant specifier from value returning func…
hannes-steffenhagen-diffblue 6abdda2
(INT) Use irep_idt in place of exprt when exprt isn't needed
hannes-steffenhagen-diffblue 38193e1
(INT) Cleanup to_string and operator<< for intervals
hannes-steffenhagen-diffblue 8f31842
(INT) Give handle constants a better name
hannes-steffenhagen-diffblue 9e2e1a9
(INT) Remove swap function in intervals
hannes-steffenhagen-diffblue fa720e9
(INT) Add additional unit tests for intervals
hannes-steffenhagen-diffblue dfbe6c8
(INT) Various code style fixes in intervals code
hannes-steffenhagen-diffblue c46f13c
(INT) Fix eval handling of ID_not case in intervals
NlightNFotis 1458656
(INT) Fix bitwise operators for intervals
NlightNFotis 6940fe2
(INT) Make eval in constant_interval_exprt const
danpoe 9972d79
(INT) Removed unimplemented function from util/interval.h
danpoe 7235a30
(INT) accept false of ID_bool as valid zero value
danpoe 6497477
(INT) Add ID_bool type preconditions to logical interval operations
danpoe d8c1e02
(INT) use tvt_to_interval instead of tv_to_interval in constant_inter…
danpoe 19dbd4c
(INT) Handle typecasts in constant_interval_exprt
danpoe 3ac8c90
(INT) Typecast from ID_bool to integer types
90ffba1
(INT) Addressing review comments
47424c0
(INT) Add well-formedness checks for constant_interval_exprt
danpoe bdc2b08
(INT) Extend interval multiplication for extremes
c42cac7
(INT) Add support for bit field and enums intervals.cpp
6cd795f
(INT) Fix broken interval unit tests
hannes-steffenhagen-diffblue efe4328
(INT) Fix bug with interval typecasts
hannes-steffenhagen-diffblue 8d8ed40
(INT) Assume relation between two int vars (issue #179)
1867091
(INT) Fixup for nil_typet being removed
chrisr-diffblue 4f76dbf
(INT) Fixups post-rebase
d62ce16
clang-format changes to the interval code and unit tests
d92a7db
Fixes for the linter.
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
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'd expect to see an equivalent for
ID_gt
andID_ge
?