chore: remove temp code
This commit is contained in:
parent
8895ed47e5
commit
c0da331e02
1 changed files with 0 additions and 6 deletions
|
|
@ -353,15 +353,9 @@ instance (n : Nat) : OfNat Nat n where
|
|||
class LE (α : Type u) where le : α → α → Prop
|
||||
class LT (α : Type u) where lt : α → α → Prop
|
||||
|
||||
abbrev HasLess.Less := @LT.lt -- TODO delete
|
||||
abbrev HasLessEq.LessEq := @LE.le -- TODO delete
|
||||
|
||||
@[reducible] def GE.ge {α : Type u} [LE α] (a b : α) : Prop := LE.le b a
|
||||
@[reducible] def GT.gt {α : Type u} [LT α] (a b : α) : Prop := LT.lt b a
|
||||
|
||||
@[reducible] def GreaterEq {α : Type u} [LE α] (a b : α) : Prop := LE.le b a -- TODO delete
|
||||
@[reducible] def Greater {α : Type u} [LT α] (a b : α) : Prop := LT.lt b a -- TODO delete
|
||||
|
||||
class HAdd (α : Type u) (β : Type v) (γ : outParam (Type w)) where
|
||||
hAdd : α → β → γ
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue