feat: mark noncomputable defs and instances
parent
d39b14cf7a
commit
59e50943d6
|
@ -50,6 +50,7 @@ structure DefinitionInfo extends Info where
|
||||||
isUnsafe : Bool
|
isUnsafe : Bool
|
||||||
hints : ReducibilityHints
|
hints : ReducibilityHints
|
||||||
equations : Option (Array CodeWithInfos)
|
equations : Option (Array CodeWithInfos)
|
||||||
|
isComputable : Bool
|
||||||
deriving Inhabited
|
deriving Inhabited
|
||||||
|
|
||||||
abbrev InstanceInfo := DefinitionInfo
|
abbrev InstanceInfo := DefinitionInfo
|
||||||
|
@ -199,21 +200,28 @@ def valueToEq (v : DefinitionVal) : MetaM Expr := withLCtx {} {} do
|
||||||
let type ← mkForallFVars xs type
|
let type ← mkForallFVars xs type
|
||||||
pure type
|
pure type
|
||||||
|
|
||||||
|
-- The following code is translated from ll_infer_type.cpp
|
||||||
|
def computable? (defn : Name) : MetaM Bool := do
|
||||||
|
let cstage2Name := defn.append `_cstage2
|
||||||
|
let env ← getEnv
|
||||||
|
pure $ env.find? cstage2Name |>.isSome
|
||||||
|
|
||||||
def DefinitionInfo.ofDefinitionVal (v : DefinitionVal) : MetaM DefinitionInfo := do
|
def DefinitionInfo.ofDefinitionVal (v : DefinitionVal) : MetaM DefinitionInfo := do
|
||||||
let info ← Info.ofConstantVal v.toConstantVal
|
let info ← Info.ofConstantVal v.toConstantVal
|
||||||
let isUnsafe := v.safety == DefinitionSafety.unsafe
|
let isUnsafe := v.safety == DefinitionSafety.unsafe
|
||||||
|
let isComputable ← computable? v.name
|
||||||
try
|
try
|
||||||
let eqs? ← getEqnsFor? v.name
|
let eqs? ← getEqnsFor? v.name
|
||||||
match eqs? with
|
match eqs? with
|
||||||
| some eqs =>
|
| some eqs =>
|
||||||
let prettyEqs ← eqs.mapM processEq
|
let prettyEqs ← eqs.mapM processEq
|
||||||
pure $ DefinitionInfo.mk info isUnsafe v.hints prettyEqs
|
pure $ DefinitionInfo.mk info isUnsafe v.hints prettyEqs isComputable
|
||||||
| none =>
|
| none =>
|
||||||
let eq ← prettyPrintTerm $ stripArgs (←valueToEq v)
|
let eq ← prettyPrintTerm $ stripArgs (←valueToEq v)
|
||||||
pure $ DefinitionInfo.mk info isUnsafe v.hints (some #[eq])
|
pure $ DefinitionInfo.mk info isUnsafe v.hints (some #[eq]) isComputable
|
||||||
catch err =>
|
catch err =>
|
||||||
IO.println s!"WARNING: Failed to calculate equational lemmata for {v.name}: {←err.toMessageData.toString}"
|
IO.println s!"WARNING: Failed to calculate equational lemmata for {v.name}: {←err.toMessageData.toString}"
|
||||||
pure $ DefinitionInfo.mk info isUnsafe v.hints none
|
pure $ DefinitionInfo.mk info isUnsafe v.hints none isComputable
|
||||||
|
|
||||||
def getConstructorType (ctor : Name) : MetaM CodeWithInfos := do
|
def getConstructorType (ctor : Name) : MetaM CodeWithInfos := do
|
||||||
let env ← getEnv
|
let env ← getEnv
|
||||||
|
@ -366,14 +374,27 @@ def getKindDescription : DocInfo → String
|
||||||
| DefinitionSafety.safe => "constant"
|
| DefinitionSafety.safe => "constant"
|
||||||
| DefinitionSafety.unsafe => "unsafe constant"
|
| DefinitionSafety.unsafe => "unsafe constant"
|
||||||
| DefinitionSafety.partial => "partial def"
|
| DefinitionSafety.partial => "partial def"
|
||||||
| definitionInfo i =>
|
| definitionInfo i => Id.run do
|
||||||
if i.hints.isAbbrev then
|
if i.hints.isAbbrev then
|
||||||
"abbrev"
|
pure "abbrev"
|
||||||
else if i.isUnsafe then
|
|
||||||
"unsafe def"
|
|
||||||
else
|
else
|
||||||
"def"
|
let mut modifiers := #[]
|
||||||
| instanceInfo i => if i.isUnsafe then "unsafe instance" else "instance"
|
if i.isUnsafe then
|
||||||
|
modifiers := modifiers.push "unsafe"
|
||||||
|
if ¬i.isComputable then
|
||||||
|
modifiers := modifiers.push "noncomputable"
|
||||||
|
|
||||||
|
modifiers := modifiers.push "def"
|
||||||
|
pure $ String.intercalate " " modifiers.toList
|
||||||
|
| instanceInfo i => Id.run do
|
||||||
|
let mut modifiers := #[]
|
||||||
|
if i.isUnsafe then
|
||||||
|
modifiers := modifiers.push "unsafe"
|
||||||
|
if ¬i.isComputable then
|
||||||
|
modifiers := modifiers.push "noncomputable"
|
||||||
|
|
||||||
|
modifiers := modifiers.push "instance"
|
||||||
|
pure $ String.intercalate " " modifiers.toList
|
||||||
| inductiveInfo i => if i.isUnsafe then "unsafe inductive" else "inductive"
|
| inductiveInfo i => if i.isUnsafe then "unsafe inductive" else "inductive"
|
||||||
| structureInfo _ => "structure"
|
| structureInfo _ => "structure"
|
||||||
| classInfo _ => "class"
|
| classInfo _ => "class"
|
||||||
|
|
Loading…
Reference in New Issue