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
COQC solutions/SsrStyle_solutions.v File "./solutions/SsrStyle_solutions.v", line 170, characters 0-90: Warning: Not a truly recursive fixpoint. [non-recursive,fixpoints] = true : bool = false : bool
And indeed gorgeous_b is defined using Fixpoint vernacular but it's not recursive:
gorgeous_b
Fixpoint
Fixpoint gorgeous_b n : bool := match n with | 1 | 2 | 4 | 7 => false | _ => true end.
A quick search did not reveal if this was intentional, so feel free to close.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
And indeed
gorgeous_b
is defined usingFixpoint
vernacular but it's not recursive:A quick search did not reveal if this was intentional, so feel free to close.
The text was updated successfully, but these errors were encountered: