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
https://github.com/affeldt-aist/trajectories/blob/d7eddd45c917c1d7e628d901bd494dd2253763a5/theories/ssr_descartes/bern5.v#L88
Coq complains because iter_nat is a notation. Indeed, replacing itern_nat by, say,
iter_nat
itern_nat
Definition iter_nat (n : nat) {A : Type} (f : A -> A) (x : A) : A := nat_rect (fun _ => A) x (fun _ => f) n.
makes the command succeed. However, it does not seem to produce the desired iter_nat_equation which is required afterwards.
iter_nat_equation
The text was updated successfully, but these errors were encountered:
bern5.v is not central in the development. This is a low priority issue.
Sorry, something went wrong.
No branches or pull requests
https://github.com/affeldt-aist/trajectories/blob/d7eddd45c917c1d7e628d901bd494dd2253763a5/theories/ssr_descartes/bern5.v#L88
Coq complains because
iter_nat
is a notation.Indeed, replacing
itern_nat
by, say,makes the command succeed. However, it does not seem to produce the desired
iter_nat_equation
which is required afterwards.The text was updated successfully, but these errors were encountered: