-
Notifications
You must be signed in to change notification settings - Fork 62
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
conditional elaboration of theories for cvc5 #734
Conversation
@@ -519,7 +530,7 @@ interpSymbols cfg = | |||
$ FFunc (FVar 1) | |||
(mapSort (FVar 0) (FVar 1)) | |||
|
|||
bagCountSort = FAbs 0 $ FFunc (bagSort $ FVar 0) $ FFunc (FVar 0) intSort | |||
bagCountSort = FAbs 0 $ FFunc (FVar 0) $ FFunc (bagSort $ FVar 0) intSort |
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.
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, this is a breaking change, I will update the corresponding assume
/define
in LH when I'm done with this PR. On the flip side, the Set_add
is as of now unused in LH, I'll add it as well.
The reason these have to flipped is that we don't do any elaboration at all for CVC5, mapping LF theories onto it directly. The alternative is to introduce a micro-elaboration step for CVC5 just to flip the arguments for Bag_count
.
No description provided.