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

Resolve error in notations for ∀ , ∃, and λ #149

Merged
merged 1 commit into from
Sep 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Lib/Foundation.v
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
From Coq Require Export Program.

Check warning on line 1 in Lib/Foundation.v

View workflow job for this annotation

GitHub Actions / build (coqorg/coq:dev)

"From Coq" has been replaced by "From Stdlib".
From Coq Require Export CMorphisms.

Check warning on line 2 in Lib/Foundation.v

View workflow job for this annotation

GitHub Actions / build (coqorg/coq:dev)

"From Coq" has been replaced by "From Stdlib".

Generalizable All Variables.
Set Primitive Projections.
Expand Down Expand Up @@ -31,7 +31,7 @@
Arguments Datatypes.id {_} _ /.

Notation "∀ x .. y , P" := (forall x, .. (forall y, P) ..)
(at level 200, x binder, y binder, right associativity) :
(at level 10, x binder, y binder, P at level 200, right associativity) :
category_theory_scope.

Notation "'exists' x .. y , p" := (sigT (fun x => .. (sigT (fun y => p)) ..))
Expand All @@ -40,7 +40,7 @@
category_theory_scope.

Notation "∃ x .. y , P" := (exists x, .. (exists y, P) ..)
(at level 200, x binder, y binder, right associativity) :
(at level 10, x binder, y binder, P at level 200, right associativity) :
category_theory_scope.

Notation "x → y" := (x -> y)
Expand All @@ -55,5 +55,5 @@
Infix "∨" := sum (at level 85, right associativity) : category_theory_scope.

Notation "'λ' x .. y , t" := (fun x => .. (fun y => t) ..)
(at level 200, x binder, y binder, right associativity) :
(at level 10, x binder, y binder, t at level 200, right associativity) :
category_theory_scope.
Loading