You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider le_ind, it is currently translated this way:
le_ind : Π n : nat . ∀ P : nat ➔ ★ . Π f : P n . Π f' : Π m : nat . le n m ➔ P m ➔ P (S m) . Π n' : nat . Π l : le n n' . P n'
= λ n : nat . Λ P : nat ➔ ★ . λ f : P n . λ f' : Π m : nat . le n m ➔ P m ➔ P (S m) . λ n' : nat . λ l : le n n' .
μ F. l @(λ n' : nat . λ l : le n n' . P n') {
| le_n ➔ f
| le_S m l' ➔ f' m l' (F -m l')
}.
But the correct translation would be with the following cast using to/le
le_ind : Π n : nat . ∀ P : nat ➔ ★ . Π f : P n . Π f' : Π m : nat . le n m ➔ P m ➔ P (S m) . Π n' : nat . Π l : le n n' . P n'
= λ n : nat . Λ P : nat ➔ ★ . λ f : P n . λ f' : Π m : nat . le n m ➔ P m ➔ P (S m) . λ n' : nat . λ l : le n n' .
μ F. l @(λ n' : nat . λ l : le n n' . P n') {
| le_n ➔ f
| le_S m l' ➔ f' m (to/le n -(isType/F) -m l') (F -m l')
}.
The text was updated successfully, but these errors were encountered:
Consider
le_ind
, it is currently translated this way:But the correct translation would be with the following cast using
to/le
The text was updated successfully, but these errors were encountered: