chore: move to new frontend

This commit is contained in:
Leonardo de Moura 2020-10-23 20:49:58 -07:00
parent 535765993a
commit 522edc6743
2 changed files with 394 additions and 390 deletions

File diff suppressed because it is too large Load diff

View file

@ -99,10 +99,12 @@ mod.inductionOn x y
Heq.symm ▸ hgt))
theorem modLe (x y : Nat) : x % y ≤ x :=
sorry
/-
Or.elim (Nat.ltOrGe x y)
(fun (h₁ : x < y) => (modEqOfLt h₁).symm ▸ Nat.leRefl _)
(fun (h₁ : x ≥ y) => Or.elim (eqZeroOrPos y)
(fun (h₂ : y = 0) => h₂.symm ▸ (Nat.modZero x).symm ▸ Nat.leRefl _)
(fun (h₂ : y > 0) => Nat.leTrans (Nat.leOfLt (Nat.modLt _ h₂)) h₁))
-/
end Nat