We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In order to reproduce, edit pleBoolC.fq as follows
pleBoolC.fq
diff --git a/tests/proof/pleBoolC.fq b/tests/proof/pleBoolC.fq index 2efb3cfc..5161d4e9 100644 --- a/tests/proof/pleBoolC.fq +++ b/tests/proof/pleBoolC.fq @@ -27,8 +27,8 @@ constant tail: (func(1, [Vec @(0); Vec @(0)])) define mall(f:func(0,[int;bool]), xs:Vec int) : bool = { - if (isNil xs) then true - else (mand (f (head xs)) (mall f (tail xs))) + (~(isNil xs)) => (mand (f (head xs)) (mall f (tail xs))) } define mand(x:bool, y:bool) : bool = {
Then run
$ fixpoint --eliminate=some tests/proof/pleBoolC.fq
The expected outcome is that PLE succeeds, however the current behavior is that it never terminates.
This was first identified in #473 when implementing some simplifications on boolean conditions.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In order to reproduce, edit
pleBoolC.fq
as followsThen run
The expected outcome is that PLE succeeds, however the current behavior is that it never terminates.
This was first identified in #473 when implementing some simplifications on boolean conditions.
The text was updated successfully, but these errors were encountered: