-
Notifications
You must be signed in to change notification settings - Fork 16
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
Add support for variables to parser #65
Conversation
f3e2f74
to
fe74717
Compare
334482c
to
21b0fc8
Compare
21b0fc8
to
5f299c9
Compare
3e4a047
to
7012689
Compare
210f0cf
to
e28c908
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.
Looks good! Thank you! I left a few comments/questions inline.
e28c908
to
e4e3a98
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.
Looks good! Thank you! I left a couple of non-blocking comments inline.
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.
Looks good!
Just one question — are you planning to implement Variable matching in IR in this PR, or it will be done in the next one?
@Overcastan yes, it will be done in the next PR. I'll open one to address IR and codegen. |
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.
All looks good! Thank you!
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.
Looks good to me, thank you!
Partly addressing #61.
This PR adds support for variables to the parser.
One question here is if there's a better name than
TransitionElem
. This represents either a declared variable in thetransition_constraints
section or a transition constraint and similarly forBoundaryElem
.