chore: Version 0.3 #136

Open
aniva wants to merge 600 commits from dev into main
4 changed files with 16 additions and 12 deletions
Showing only changes of commit b9ff9e8f13 - Show all commits

View File

@ -144,29 +144,34 @@ def inspect (args: Protocol.EnvInspect) (options: @&Protocol.Options): Protocol.
else else
.pure result .pure result
return result return result
/-- Elaborates and adds a declaration to the `CoreM` environment. -/
@[export pantograph_env_add_m] @[export pantograph_env_add_m]
def addDecl (name: String) (levels: Array String := #[]) (type: String) (value: String) (isTheorem: Bool) def addDecl (name: String) (levels: Array String := #[]) (type?: Option 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 levelParams := levels.toList.map (·.toName) let levelParams := levels.toList.map (·.toName)
let tvM: Elab.TermElabM (Except String (Expr × Expr)) := let tvM: Elab.TermElabM (Except String (Expr × Expr)) :=
Elab.Term.withLevelNames levelParams do do Elab.Term.withLevelNames levelParams do do
let type ← match parseTerm env type with let expectedType?? : Except String (Option Expr) ← ExceptT.run $ type?.mapM λ type => do
| .ok syn => do match parseTerm env type with
match ← elabTerm syn with | .ok syn => elabTerm syn
| .error e => return .error e | .error e => MonadExceptOf.throw e
| .ok expr => pure expr let expectedType? ← match expectedType?? with
| .ok t? => pure t?
| .error e => return .error e | .error e => return .error e
let value ← match parseTerm env value with let value ← match parseTerm env value with
| .ok syn => do | .ok syn => do
try try
let expr ← Elab.Term.elabTerm (stx := syn) (expectedType? := .some type) let expr ← Elab.Term.elabTerm (stx := syn) (expectedType? := expectedType?)
Lean.Elab.Term.synthesizeSyntheticMVarsNoPostponing Lean.Elab.Term.synthesizeSyntheticMVarsNoPostponing
let expr ← instantiateMVars expr let expr ← instantiateMVars expr
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
Elab.Term.synthesizeSyntheticMVarsNoPostponing Elab.Term.synthesizeSyntheticMVarsNoPostponing
let type ← match expectedType? with
| .some t => pure t
| .none => Meta.inferType value
pure $ .ok (← instantiateMVars type, ← instantiateMVars value) 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

View File

@ -205,7 +205,7 @@ structure EnvInspectResult where
structure EnvAdd where structure EnvAdd where
name: String name: String
levels: Array String := #[] levels: Array String := #[]
type: String type?: Option String := .none
value: String value: String
isTheorem: Bool := false isTheorem: Bool := false
deriving Lean.FromJson deriving Lean.FromJson

View File

@ -227,7 +227,7 @@ def execute (command: Protocol.Command): MainM Json := do
let state ← getMainState let state ← getMainState
runCoreM' $ Environment.inspect args state.options runCoreM' $ Environment.inspect args state.options
env_add (args: Protocol.EnvAdd): EMainM Protocol.EnvAddResult := do env_add (args: Protocol.EnvAdd): EMainM Protocol.EnvAddResult := do
runCoreM' $ Environment.addDecl args.name args.levels args.type args.value args.isTheorem runCoreM' $ Environment.addDecl args.name args.levels args.type? args.value args.isTheorem
env_save (args: Protocol.EnvSaveLoad): EMainM Protocol.EnvSaveLoadResult := do env_save (args: Protocol.EnvSaveLoad): EMainM Protocol.EnvSaveLoadResult := do
let env ← MonadEnv.getEnv let env ← MonadEnv.getEnv
environmentPickle env args.path environmentPickle env args.path

View File

@ -167,7 +167,6 @@ def test_env_add_inspect : Test :=
step "env.add" step "env.add"
({ ({
name := name1, name := name1,
type := "Prop → Prop → Prop",
value := "λ (a b: Prop) => Or a b", value := "λ (a b: Prop) => Or a b",
isTheorem := false isTheorem := false
}: Protocol.EnvAdd) }: Protocol.EnvAdd)
@ -181,7 +180,7 @@ def test_env_add_inspect : Test :=
step "env.add" step "env.add"
({ ({
name := name2, name := name2,
type := "Nat → Int", type? := "Nat → Int",
value := "λ (a: Nat) => a + 1", value := "λ (a: Nat) => a + 1",
isTheorem := false isTheorem := false
}: Protocol.EnvAdd) }: Protocol.EnvAdd)
@ -196,7 +195,7 @@ def test_env_add_inspect : Test :=
({ ({
name := name3, name := name3,
levels := #["u"] levels := #["u"]
type := "(α : Type u) → α → (α × α)", type? := "(α : Type u) → α → (α × α)",
value := "λ (α : Type u) (x : α) => (x, x)", value := "λ (α : Type u) (x : α) => (x, x)",
isTheorem := false isTheorem := false
}: Protocol.EnvAdd) }: Protocol.EnvAdd)