chore: remove partial TODO (#4380)

This commit is contained in:
Henrik Böving 2024-06-06 20:04:55 +02:00 committed by GitHub
parent 0a0f1d7cc7
commit b9bfd30514
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -258,8 +258,7 @@ def ctorToNat : Level → Nat
| max .. => 4
| imax .. => 5
/- TODO: use well founded recursion. -/
partial def normLtAux : Level → Nat → Level → Nat → Bool
def normLtAux : Level → Nat → Level → Nat → Bool
| succ l₁, k₁, l₂, k₂ => normLtAux l₁ (k₁+1) l₂ k₂
| l₁, k₁, succ l₂, k₂ => normLtAux l₁ k₁ l₂ (k₂+1)
| l₁@(max l₁₁ l₁₂), k₁, l₂@(max l₂₁ l₂₂), k₂ =>