Skip to content
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

Functional Scheme #4

Open
affeldt-aist opened this issue Jun 28, 2022 · 1 comment
Open

Functional Scheme #4

affeldt-aist opened this issue Jun 28, 2022 · 1 comment

Comments

@affeldt-aist
Copy link
Member

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,

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.

@ybertot
Copy link
Member

ybertot commented Jun 29, 2022

bern5.v is not central in the development. This is a low priority issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants