chore: Version 0.3 #136

Open
aniva wants to merge 600 commits from dev into main
2 changed files with 23 additions and 4 deletions
Showing only changes of commit 9ea099827f - Show all commits

View File

@ -148,7 +148,9 @@ def inspect (args: Protocol.EnvInspect) (options: @&Protocol.Options): Protocol.
def addDecl (name: String) (levels: Array String := #[]) (type: String) (value: String) (isTheorem: Bool) def addDecl (name: String) (levels: Array String := #[]) (type: String) (value: String) (isTheorem: Bool)
: Protocol.FallibleT CoreM Protocol.EnvAddResult := do : Protocol.FallibleT CoreM Protocol.EnvAddResult := do
let env ← Lean.MonadEnv.getEnv let env ← Lean.MonadEnv.getEnv
let tvM: Elab.TermElabM (Except String (Expr × Expr)) := do let levelParams := levels.toList.map (·.toName)
let tvM: Elab.TermElabM (Except String (Expr × Expr)) :=
Elab.Term.withLevelNames levelParams do do
let type ← match parseTerm env type with let type ← match parseTerm env type with
| .ok syn => do | .ok syn => do
match ← elabTerm syn with match ← elabTerm syn with
@ -164,11 +166,11 @@ def addDecl (name: String) (levels: Array String := #[]) (type: String) (value:
pure $ expr pure $ expr
catch ex => return .error (← ex.toMessageData.toString) catch ex => return .error (← ex.toMessageData.toString)
| .error e => return .error e | .error e => return .error e
pure $ .ok (type, value) Elab.Term.synthesizeSyntheticMVarsNoPostponing
pure $ .ok (← instantiateMVars type, ← instantiateMVars value)
let (type, value) ← match ← tvM.run' (ctx := {}) |>.run' with let (type, value) ← match ← tvM.run' (ctx := {}) |>.run' with
| .ok t => pure t | .ok t => pure t
| .error e => Protocol.throw $ Protocol.errorExpr e | .error e => Protocol.throw $ Protocol.errorExpr e
let levelParams := levels.toList.map (·.toName)
let decl := if isTheorem then let decl := if isTheorem then
Lean.Declaration.thmDecl <| Lean.mkTheoremValEx Lean.Declaration.thmDecl <| Lean.mkTheoremValEx
(name := name.toName) (name := name.toName)

View File

@ -162,6 +162,7 @@ def test_automatic_mode (automatic: Bool): Test :=
def test_env_add_inspect : Test := def test_env_add_inspect : Test :=
let name1 := "Pantograph.mystery" let name1 := "Pantograph.mystery"
let name2 := "Pantograph.mystery2" let name2 := "Pantograph.mystery2"
let name3 := "Pantograph.mystery3"
[ [
step "env.add" step "env.add"
({ ({
@ -190,9 +191,25 @@ def test_env_add_inspect : Test :=
value? := .some { pp? := .some "fun a => ↑a + 1" }, value? := .some { pp? := .some "fun a => ↑a + 1" },
type := { pp? := .some "Nat → Int" }, type := { pp? := .some "Nat → Int" },
}: }:
Protocol.EnvInspectResult) Protocol.EnvInspectResult),
step "env.add"
({
name := name3,
levels := #["u"]
type := "(α : Type u) → α → (α × α)",
value := "λ (α : Type u) (x : α) => (x, x)",
isTheorem := false
}: Protocol.EnvAdd)
({}: Protocol.EnvAddResult),
step "env.inspect" ({name := name3} : Protocol.EnvInspect)
({
type := { pp? := .some "(α : Type u) → αα × α" },
}:
Protocol.EnvInspectResult),
] ]
def f.{u} : (α : Type u) → α → (α × α) := λ (α : Type u) (x : α) => (x, x)
example : ∀ (p: Prop), p → p := by example : ∀ (p: Prop), p → p := by
intro p h intro p h
exact h exact h