-
Notifications
You must be signed in to change notification settings - Fork 4
Let-and implementation #68
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
base: after-ftscs
Are you sure you want to change the base?
Conversation
Adds verification for parallel equations joined with "and", and includes some simple examples to test.
jlvargasme
left a comment
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.
Implementation is good, just added a few comments to adhere to the pull requests CL guidelines
| @@ -0,0 +1,4 @@ | |||
| let node exec () = | |||
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.
Add brief description of what is being tested, it would be good to have the generated vc as a comment.
| @@ -0,0 +1,4 @@ | |||
| let node exec () = | |||
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.
Add brief description of what is being tested, it would be good to have the generated vc as a comment.
Add comments describing expected result and generated VCs for the two test files
parallel_simple3.zls intentionally fails
|
Changes have been implemented, awaiting further review |
Add support for equations of the form
let x=e1 and y=e2...verification condition generation. Also includes some test cases to test its operation.