chore: Update Lean to v4.17.0
This commit is contained in:
parent
bc37482212
commit
d305918bb9
|
@ -122,7 +122,8 @@ partial def instantiateDelayedMVars (expr : Expr) : MetaM Expr :=
|
||||||
return .visit (mkAppN assign args)
|
return .visit (mkAppN assign args)
|
||||||
else if let some { fvars, mvarIdPending } ← getDelayedMVarAssignment? mvarId then
|
else if let some { fvars, mvarIdPending } ← getDelayedMVarAssignment? mvarId then
|
||||||
if ← isTracingEnabledFor `Pantograph.Delate then
|
if ← isTracingEnabledFor `Pantograph.Delate then
|
||||||
let substTableStr := String.intercalate ", " $ Array.zipWith fvars args (λ fvar assign => s!"{fvar.fvarId!.name} := {assign}") |>.toList
|
let substTableStr := ",".intercalate $
|
||||||
|
Array.zipWith (λ fvar assign => s!"{fvar.fvarId!.name} := {assign}") fvars args |>.toList
|
||||||
trace[Pantograph.Delate]"MD ?{mvarId.name} := ?{mvarIdPending.name} [{substTableStr}]"
|
trace[Pantograph.Delate]"MD ?{mvarId.name} := ?{mvarIdPending.name} [{substTableStr}]"
|
||||||
|
|
||||||
if args.size < fvars.size then
|
if args.size < fvars.size then
|
||||||
|
|
|
@ -91,7 +91,6 @@ def inspect (args: Protocol.EnvInspect) (options: @&Protocol.Options): CoreM (Pr
|
||||||
isUnsafe := info.isUnsafe,
|
isUnsafe := info.isUnsafe,
|
||||||
value? := ← value?.mapM (λ v => serializeExpression options v |>.run'),
|
value? := ← value?.mapM (λ v => serializeExpression options v |>.run'),
|
||||||
publicName? := Lean.privateToUserName? name |>.map (·.toString),
|
publicName? := Lean.privateToUserName? name |>.map (·.toString),
|
||||||
-- BUG: Warning: getUsedConstants here will not include projections. This is a known bug.
|
|
||||||
typeDependency? := if args.dependency?.getD false
|
typeDependency? := if args.dependency?.getD false
|
||||||
then .some <| type.getUsedConstants.map (λ n => serializeName n)
|
then .some <| type.getUsedConstants.map (λ n => serializeName n)
|
||||||
else .none,
|
else .none,
|
||||||
|
@ -169,7 +168,7 @@ def addDecl (args: Protocol.EnvAdd): CoreM (Protocol.CR Protocol.EnvAddResult) :
|
||||||
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 => return .error $ Protocol.errorExpr e
|
| .error e => return .error $ Protocol.errorExpr e
|
||||||
let constant := Lean.Declaration.defnDecl <| Lean.mkDefinitionValEx
|
let decl := Lean.Declaration.defnDecl <| Lean.mkDefinitionValEx
|
||||||
(name := args.name.toName)
|
(name := args.name.toName)
|
||||||
(levelParams := [])
|
(levelParams := [])
|
||||||
(type := type)
|
(type := type)
|
||||||
|
@ -177,13 +176,7 @@ def addDecl (args: Protocol.EnvAdd): CoreM (Protocol.CR Protocol.EnvAddResult) :
|
||||||
(hints := Lean.mkReducibilityHintsRegularEx 1)
|
(hints := Lean.mkReducibilityHintsRegularEx 1)
|
||||||
(safety := Lean.DefinitionSafety.safe)
|
(safety := Lean.DefinitionSafety.safe)
|
||||||
(all := [])
|
(all := [])
|
||||||
let env' ← match env.addDecl (← getOptions) constant with
|
Lean.addDecl decl
|
||||||
| .error e => do
|
|
||||||
let options ← Lean.MonadOptions.getOptions
|
|
||||||
let desc ← (e.toMessageData options).toString
|
|
||||||
return .error $ { error := "kernel", desc }
|
|
||||||
| .ok env' => pure env'
|
|
||||||
Lean.MonadEnv.modifyEnv (λ _ => env')
|
|
||||||
return .ok {}
|
return .ok {}
|
||||||
|
|
||||||
end Pantograph.Environment
|
end Pantograph.Environment
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
namespace Pantograph
|
namespace Pantograph
|
||||||
|
|
||||||
@[export pantograph_version]
|
@[export pantograph_version]
|
||||||
def version := "0.3.0-rc.1"
|
def version := "0.3.0"
|
||||||
|
|
||||||
end Pantograph
|
end Pantograph
|
||||||
|
|
|
@ -47,12 +47,8 @@ def test_environment_pickling : TestM Unit := do
|
||||||
(hints := Lean.mkReducibilityHintsRegularEx 1)
|
(hints := Lean.mkReducibilityHintsRegularEx 1)
|
||||||
(safety := Lean.DefinitionSafety.safe)
|
(safety := Lean.DefinitionSafety.safe)
|
||||||
(all := [])
|
(all := [])
|
||||||
let env' ← match (← getEnv).addDecl (← getOptions) c with
|
addDecl c
|
||||||
| .error e => do
|
environmentPickle (← getEnv) envPicklePath
|
||||||
let error ← (e.toMessageData (← getOptions)).toString
|
|
||||||
throwError error
|
|
||||||
| .ok env' => pure env'
|
|
||||||
environmentPickle env' envPicklePath
|
|
||||||
|
|
||||||
let _ ← runCoreM coreDst do
|
let _ ← runCoreM coreDst do
|
||||||
let (env', _) ← environmentUnpickle envPicklePath
|
let (env', _) ← environmentUnpickle envPicklePath
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
leanprover/lean4:v4.16.0
|
leanprover/lean4:v4.17.0
|
||||||
|
|
Loading…
Reference in New Issue