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

Rework eliminators if possible #3

Open
Russoul opened this issue Dec 8, 2023 · 1 comment
Open

Rework eliminators if possible #3

Russoul opened this issue Dec 8, 2023 · 1 comment
Labels

Comments

@Russoul
Copy link
Owner

Russoul commented Dec 8, 2023

Γ (x : ℕ) ⊦ A type
Γ ⊦ z : A(0/x)
Γ (x : ℕ) (h : A) ⊦ s : A(S x/x)
Γ ⊦ t : ℕ
--------------------------------
Γ ⊦ ℕ-elim x.A z s t : A(t/x)

vs

Γ (x : ℕ) ⊦ A type
Γ ⊦ z : A(0/x)
Γ (x : ℕ) (h : A) ⊦ s : A(S x/x)
--------------------------------
Γ (x : ℕ) ⊦ ℕ-elim z s : A

Γ ⊦ f : (x : A) → B
Γ ⊦ t : A
------------------------
Γ (x : A) ⊦ f t : B(t/x)

vs

Γ ⊦ f : (x : A) → B
-------------------
Γ (x : A) ⊦ f @ : B

@Russoul Russoul added enhancement New feature or request scope: core labels Dec 8, 2023
@Russoul
Copy link
Owner Author

Russoul commented Dec 8, 2023

Having looked into this again, I think there is no point. Succinct one together with substitution boils down to the one we have.

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

No branches or pull requests

1 participant