-
Notifications
You must be signed in to change notification settings - Fork 37
feat(ADT): model generation #1093
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
Merged
Changes from 21 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
6c04a5e
Model generation for ADT theory
Halbaroth b82ccd9
Use the Heap of Alt-Ergo
Halbaroth 7ca41b5
poetry
Halbaroth b9a0a3d
Improve performance of `pick_tightenable_domain`
Halbaroth 5af24eb
final clean up
Halbaroth 5bb2d04
fix for old OCaml versions
Halbaroth 64fe662
Disable casesplit for enum constructors
Halbaroth 9133c97
Case-split spelling
Halbaroth 2177dd6
Remove useless Uf.find_r
Halbaroth 460b1be
Simplify return type of `pick_best`
Halbaroth 70d25eb
Add comment for empty ctx of `X.make`
Halbaroth 9f775c7
poetry
Halbaroth 2580bf2
genetive again...
Halbaroth 1225740
Use formal writing
Halbaroth 2ac96a1
Remove `open DE`
Halbaroth 7a648aa
Rollback `split_delayed_destructor`
Halbaroth cddb65d
Remove my fancy operator `<?>`
Halbaroth c0b49e6
rename `pop_minimun` to `pop_min`
Halbaroth dc6faac
Remove outdated comment
Halbaroth 52d3bc5
remove let-punning
Halbaroth 375339a
Add a TODO comment for pending destructors
Halbaroth 8a42861
Fix headers of Nest
Halbaroth ce456f6
send enum adt to the legacy adt theory
Halbaroth 280eb2f
Clarify doc of reinit
Halbaroth 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.
Before this PR, we sent enum types in mutually recursive definitions to the
Sumtheory. We cannot do that anymore because we need to send wellf-founded nest to the ADT theory. I didn't write a comment here because this code will disappear after mergingSumtheory intoADTtheory.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.
Not sure I understand — we can remove
enumtypes from the nest and treat them as external types, no? enum types are always well-founded.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.
I think it's okay to remove it so I did it.