-
Notifications
You must be signed in to change notification settings - Fork 1
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
Update charon #83
base: main
Are you sure you want to change the base?
Update charon #83
Conversation
c222e20
to
95d3a3e
Compare
I'll review this on Friday after the paper submission deadlines -- this looks like a delicate PR, thanks! |
95d3a3e
to
f150400
Compare
f150400
to
831877e
Compare
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.
Great. This new representation is much better and lends itself to recursion, which is hella more intuitive. Thanks for the patch, much appreciated! Have a great weekend.
let ts = | ||
match sub_e.typ with | ||
| TTuple ts -> ts | ||
| _ -> assert false |
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.
so the issue with tuples of length 1 has been fixed upstream?
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.
ah I see, the early-return case is still up there
Companion PR to AeneasVerif/charon#457 which changes how we represent places in charon. In particular, charon now stores the type of each place. I use this to simplify
expression_of_place
.