Merge remote-tracking branch 'gebner/minmax'

This commit is contained in:
tydeu 2022-10-25 20:58:41 -04:00
commit 17a4bcb3e1
3 changed files with 5 additions and 1 deletions

View file

@ -153,6 +153,8 @@ instance : Repr MTime := inferInstanceAs (Repr SystemTime)
instance : Ord MTime := inferInstanceAs (Ord SystemTime)
instance : LT MTime := ltOfOrd
instance : LE MTime := leOfOrd
instance : Min MTime := minOfLe
instance : Max MTime := maxOfLe
instance : NilTrace MTime := ⟨0⟩
instance : MixTrace MTime := ⟨max⟩

View file

@ -36,6 +36,8 @@ deriving Inhabited, Repr, DecidableEq, Ord
instance : LT BuildType := ltOfOrd
instance : LE BuildType := leOfOrd
instance : Min BuildType := minOfLe
instance : Max BuildType := maxOfLe
/-- The arguments to pass to `leanc` based on the build type. -/
def BuildType.leancArgs : BuildType → Array String

View file

@ -1 +1 @@
leanprover/lean4:nightly-2022-10-20
leanprover/lean4:nightly-2022-10-25