This PR sets up the new integrated test/bench suite. It then migrates all benchmarks and some related tests to the new suite. There's also some documentation and some linting. For now, a lot of the old tests are left alone so this PR doesn't become even larger than it already is. Eventually, all tests should be migrated to the new suite though so there isn't a confusing mix of two systems.
48 lines
1.2 KiB
Text
48 lines
1.2 KiB
Text
set_option pp.mvars false
|
|
|
|
opaque foo : {x : Nat} → Type
|
|
opaque bar : {T : Type} → ({x : T} → Type) → Type
|
|
structure Baz where
|
|
baz : {x : Nat} → Type
|
|
|
|
/-- info: bar fun {x} => foo : Type -/
|
|
#guard_msgs in
|
|
#check bar foo
|
|
|
|
/-- info: fun b => bar fun {x} => b.baz : Baz → Type -/
|
|
#guard_msgs in
|
|
#check fun (b : Baz) => bar b.baz
|
|
|
|
|
|
structure Ty where
|
|
ctx : Type
|
|
ty : ctx → Type
|
|
structure Tm where
|
|
ty : Ty
|
|
tm : ∀ {Γ}, ty.ty Γ
|
|
|
|
/--
|
|
info: fun Γ A x x_1 xTy =>
|
|
Eq.rec (motive := fun ty x => {Γ : ty.ctx} → ty.ty Γ) (fun {Γ} => x_1.tm)
|
|
xTy : (Γ : Type) → (A : Ty) → (x : Γ = A.ctx) → (x_1 : Tm) → (xTy : x_1.ty = A) → A.ty (?_ Γ A x x_1 xTy)
|
|
-/
|
|
#guard_msgs in
|
|
#check fun (Γ : Type)
|
|
(A : Ty)
|
|
(_ : Γ = A.ctx)
|
|
(x : Tm)
|
|
(xTy : x.ty = A)
|
|
=> Eq.rec (motive := fun ty _ => ∀ {Γ:ty.ctx}, ty.ty Γ) (fun {Γ} => x.tm (Γ:=Γ)) xTy
|
|
|
|
/--
|
|
info: fun Γ A x x_1 xTy =>
|
|
Eq.rec (motive := fun ty x => {Γ : ty.ctx} → ty.ty Γ) (fun {Γ} => x_1.tm)
|
|
xTy : (Γ : Type) → (A : Ty) → (x : Γ = A.ctx) → (x_1 : Tm) → (xTy : x_1.ty = A) → A.ty (?_ Γ A x x_1 xTy)
|
|
-/
|
|
#guard_msgs in
|
|
#check fun (Γ : Type)
|
|
(A : Ty)
|
|
(_ : Γ = A.ctx)
|
|
(x : Tm)
|
|
(xTy : x.ty = A)
|
|
=> Eq.rec (motive := fun ty _ => ∀ {Γ:ty.ctx}, ty.ty Γ) x.tm xTy
|