387 lines
15 KiB
Plaintext
387 lines
15 KiB
Plaintext
/-
|
||
Functions for handling metavariables
|
||
|
||
All the functions starting with `try` resume their inner monadic state.
|
||
-/
|
||
import Pantograph.Tactic
|
||
import Lean
|
||
|
||
|
||
namespace Pantograph
|
||
open Lean
|
||
|
||
def filename: String := "<pantograph>"
|
||
|
||
/--
|
||
Represents an interconnected set of metavariables, or a state in proof search
|
||
-/
|
||
structure GoalState where
|
||
savedState : Elab.Tactic.SavedState
|
||
|
||
-- The root hole which is the search target
|
||
root: MVarId
|
||
|
||
-- Parent state metavariable source
|
||
parentMVar?: Option MVarId
|
||
|
||
-- Existence of this field shows that we are currently in `conv` mode.
|
||
-- (convRhs, goal, dormant)
|
||
convMVar?: Option (MVarId × MVarId × List MVarId) := .none
|
||
-- Previous RHS for calc, so we don't have to repeat it every time
|
||
-- WARNING: If using `state with` outside of `calc`, this must be set to `.none`
|
||
calcPrevRhs?: Option (MVarId × Expr) := .none
|
||
|
||
@[export pantograph_goal_state_create_m]
|
||
protected def GoalState.create (expr: Expr): Elab.TermElabM GoalState := do
|
||
-- May be necessary to immediately synthesise all metavariables if we need to leave the elaboration context.
|
||
-- See https://leanprover.zulipchat.com/#narrow/stream/270676-lean4/topic/Unknown.20universe.20metavariable/near/360130070
|
||
|
||
--Elab.Term.synthesizeSyntheticMVarsNoPostponing
|
||
--let expr ← instantiateMVars expr
|
||
let root ← Meta.mkFreshExprMVar expr (kind := MetavarKind.synthetic) (userName := .anonymous)
|
||
let savedStateMonad: Elab.Tactic.TacticM Elab.Tactic.SavedState := MonadBacktrack.saveState
|
||
let savedState ← savedStateMonad { elaborator := .anonymous } |>.run' { goals := [root.mvarId!]}
|
||
return {
|
||
root := root.mvarId!,
|
||
savedState,
|
||
parentMVar? := .none,
|
||
}
|
||
@[export pantograph_goal_state_is_conv]
|
||
protected def GoalState.isConv (state: GoalState): Bool :=
|
||
state.convMVar?.isSome
|
||
protected def GoalState.goals (state: GoalState): List MVarId :=
|
||
state.savedState.tactic.goals
|
||
@[export pantograph_goal_state_goals]
|
||
protected def GoalState.goalsArray (state: GoalState): Array MVarId := state.goals.toArray
|
||
protected def GoalState.mctx (state: GoalState): MetavarContext :=
|
||
state.savedState.term.meta.meta.mctx
|
||
protected def GoalState.env (state: GoalState): Environment :=
|
||
state.savedState.term.meta.core.env
|
||
|
||
@[export pantograph_goal_state_meta_context_of_goal]
|
||
protected def GoalState.metaContextOfGoal (state: GoalState) (mvarId: MVarId): Option Meta.Context := do
|
||
let mvarDecl ← state.mctx.findDecl? mvarId
|
||
return { lctx := mvarDecl.lctx, localInstances := mvarDecl.localInstances }
|
||
protected def GoalState.metaState (state: GoalState): Meta.State :=
|
||
state.savedState.term.meta.meta
|
||
|
||
protected def GoalState.withContext (state: GoalState) (mvarId: MVarId) (m: MetaM α): MetaM α := do
|
||
mvarId.withContext m |>.run' (← read) state.metaState
|
||
|
||
protected def GoalState.withParentContext { n } [MonadControlT MetaM n] [Monad n] (state: GoalState): n α → n α :=
|
||
Meta.mapMetaM <| state.withContext state.parentMVar?.get!
|
||
protected def GoalState.withRootContext { n } [MonadControlT MetaM n] [Monad n] (state: GoalState): n α → n α :=
|
||
Meta.mapMetaM <| state.withContext state.root
|
||
|
||
private def GoalState.mvars (state: GoalState): SSet MVarId :=
|
||
state.mctx.decls.foldl (init := .empty) fun acc k _ => acc.insert k
|
||
protected def GoalState.restoreMetaM (state: GoalState): MetaM Unit :=
|
||
state.savedState.term.meta.restore
|
||
protected def GoalState.restoreElabM (state: GoalState): Elab.TermElabM Unit :=
|
||
state.savedState.term.restore
|
||
private def GoalState.restoreTacticM (state: GoalState) (goal: MVarId): Elab.Tactic.TacticM Unit := do
|
||
state.savedState.restore
|
||
Elab.Tactic.setGoals [goal]
|
||
|
||
@[export pantograph_goal_state_focus]
|
||
protected def GoalState.focus (state: GoalState) (goalId: Nat): Option GoalState := do
|
||
let goal ← state.savedState.tactic.goals.get? goalId
|
||
return {
|
||
state with
|
||
savedState := {
|
||
state.savedState with
|
||
tactic := { goals := [goal] },
|
||
},
|
||
calcPrevRhs? := .none,
|
||
}
|
||
|
||
/-- Immediately bring all parent goals back into scope. Used in automatic mode -/
|
||
@[export pantograph_goal_state_immediate_resume_parent]
|
||
protected def GoalState.immediateResume (state: GoalState) (parent: GoalState): GoalState :=
|
||
-- Prune parents solved goals
|
||
let mctx := state.mctx
|
||
let parentGoals := parent.goals.filter $ λ goal => mctx.eAssignment.contains goal
|
||
{
|
||
state with
|
||
savedState := {
|
||
state.savedState with
|
||
tactic := { goals := state.goals ++ parentGoals },
|
||
},
|
||
}
|
||
|
||
/--
|
||
Brings into scope a list of goals
|
||
-/
|
||
@[export pantograph_goal_state_resume]
|
||
protected def GoalState.resume (state: GoalState) (goals: List MVarId): Except String GoalState :=
|
||
if ¬ (goals.all (λ goal => state.mvars.contains goal)) then
|
||
let invalid_goals := goals.filter (λ goal => ¬ state.mvars.contains goal) |>.map (·.name.toString)
|
||
.error s!"Goals {invalid_goals} are not in scope"
|
||
else
|
||
-- Set goals to the goals that have not been assigned yet, similar to the `focus` tactic.
|
||
let unassigned := goals.filter (λ goal =>
|
||
let mctx := state.mctx
|
||
¬(mctx.eAssignment.contains goal || mctx.dAssignment.contains goal))
|
||
.ok {
|
||
state with
|
||
savedState := {
|
||
term := state.savedState.term,
|
||
tactic := { goals := unassigned },
|
||
},
|
||
}
|
||
/--
|
||
Brings into scope all goals from `branch`
|
||
-/
|
||
@[export pantograph_goal_state_continue]
|
||
protected def GoalState.continue (target: GoalState) (branch: GoalState): Except String GoalState :=
|
||
if !target.goals.isEmpty then
|
||
.error s!"Target state has unresolved goals"
|
||
else if target.root != branch.root then
|
||
.error s!"Roots of two continued goal states do not match: {target.root.name} != {branch.root.name}"
|
||
else
|
||
target.resume (goals := branch.goals)
|
||
|
||
@[export pantograph_goal_state_root_expr]
|
||
protected def GoalState.rootExpr? (goalState: GoalState): Option Expr := do
|
||
let expr ← goalState.mctx.eAssignment.find? goalState.root
|
||
let (expr, _) := instantiateMVarsCore (mctx := goalState.mctx) (e := expr)
|
||
if expr.hasExprMVar then
|
||
-- Must not assert that the goal state is empty here. We could be in a branch goal.
|
||
--assert! ¬goalState.goals.isEmpty
|
||
.none
|
||
else
|
||
assert! goalState.goals.isEmpty
|
||
return expr
|
||
@[export pantograph_goal_state_parent_expr]
|
||
protected def GoalState.parentExpr? (goalState: GoalState): Option Expr := do
|
||
let parent ← goalState.parentMVar?
|
||
let expr := goalState.mctx.eAssignment.find! parent
|
||
let (expr, _) := instantiateMVarsCore (mctx := goalState.mctx) (e := expr)
|
||
return expr
|
||
@[export pantograph_goal_state_get_mvar_e_assignment]
|
||
protected def GoalState.getMVarEAssignment (goalState: GoalState) (mvarId: MVarId): Option Expr := do
|
||
let expr ← goalState.mctx.eAssignment.find? mvarId
|
||
let (expr, _) := instantiateMVarsCore (mctx := goalState.mctx) (e := expr)
|
||
return expr
|
||
|
||
--- Tactic execution functions ---
|
||
|
||
protected def GoalState.step (state: GoalState) (goal: MVarId) (tacticM: Elab.Tactic.TacticM Unit)
|
||
: Elab.TermElabM GoalState := do
|
||
unless (← getMCtx).decls.contains goal do
|
||
throwError s!"Goal is not in context: {goal.name}"
|
||
goal.checkNotAssigned `GoalState.step
|
||
let (_, newGoals) ← tacticM { elaborator := .anonymous } |>.run { goals := [goal] }
|
||
let nextElabState ← MonadBacktrack.saveState
|
||
return {
|
||
state with
|
||
savedState := { term := nextElabState, tactic := newGoals },
|
||
parentMVar? := .some goal,
|
||
calcPrevRhs? := .none,
|
||
}
|
||
|
||
/-- Response for executing a tactic -/
|
||
inductive TacticResult where
|
||
-- Goes to next state
|
||
| success (state: GoalState)
|
||
-- Tactic failed with messages
|
||
| failure (messages: Array String)
|
||
-- Could not parse tactic
|
||
| parseError (message: String)
|
||
-- The given action cannot be executed in the state
|
||
| invalidAction (message: String)
|
||
|
||
/-- Executes a `TacticM` monads on this `GoalState`, collecting the errors as necessary -/
|
||
protected def GoalState.tryTacticM (state: GoalState) (goal: MVarId) (tacticM: Elab.Tactic.TacticM Unit):
|
||
Elab.TermElabM TacticResult := do
|
||
try
|
||
let nextState ← state.step goal tacticM
|
||
return .success nextState
|
||
catch exception =>
|
||
return .failure #[← exception.toMessageData.toString]
|
||
|
||
/-- Execute a string tactic on given state. Restores TermElabM -/
|
||
protected def GoalState.tryTactic (state: GoalState) (goal: MVarId) (tactic: String):
|
||
Elab.TermElabM TacticResult := do
|
||
state.restoreElabM
|
||
let tactic ← match Parser.runParserCategory
|
||
(env := ← MonadEnv.getEnv)
|
||
(catName := if state.isConv then `conv else `tactic)
|
||
(input := tactic)
|
||
(fileName := filename) with
|
||
| .ok stx => pure $ stx
|
||
| .error error => return .parseError error
|
||
state.tryTacticM goal $ Elab.Tactic.evalTactic tactic
|
||
|
||
protected def GoalState.tryAssign (state: GoalState) (goal: MVarId) (expr: String):
|
||
Elab.TermElabM TacticResult := do
|
||
state.restoreElabM
|
||
let expr ← match Parser.runParserCategory
|
||
(env := ← MonadEnv.getEnv)
|
||
(catName := `term)
|
||
(input := expr)
|
||
(fileName := filename) with
|
||
| .ok syn => pure syn
|
||
| .error error => return .parseError error
|
||
state.tryTacticM goal $ Tactic.evalAssign expr
|
||
|
||
-- Specialized Tactics
|
||
|
||
protected def GoalState.tryLet (state: GoalState) (goal: MVarId) (binderName: String) (type: String):
|
||
Elab.TermElabM TacticResult := do
|
||
state.restoreElabM
|
||
let type ← match Parser.runParserCategory
|
||
(env := ← MonadEnv.getEnv)
|
||
(catName := `term)
|
||
(input := type)
|
||
(fileName := filename) with
|
||
| .ok syn => pure syn
|
||
| .error error => return .parseError error
|
||
state.tryTacticM goal $ Tactic.evalLet binderName.toName type
|
||
|
||
/-- Enter conv tactic mode -/
|
||
protected def GoalState.conv (state: GoalState) (goal: MVarId):
|
||
Elab.TermElabM TacticResult := do
|
||
if state.convMVar?.isSome then
|
||
return .invalidAction "Already in conv state"
|
||
goal.checkNotAssigned `GoalState.conv
|
||
let tacticM : Elab.Tactic.TacticM (Elab.Tactic.SavedState × MVarId) := do
|
||
state.restoreTacticM goal
|
||
|
||
-- See Lean.Elab.Tactic.Conv.convTarget
|
||
let convMVar ← Elab.Tactic.withMainContext do
|
||
let (rhs, newGoal) ← Elab.Tactic.Conv.mkConvGoalFor (← Elab.Tactic.getMainTarget)
|
||
Elab.Tactic.replaceMainGoal [newGoal.mvarId!]
|
||
pure rhs.mvarId!
|
||
return (← MonadBacktrack.saveState, convMVar)
|
||
try
|
||
let (nextSavedState, convRhs) ← tacticM { elaborator := .anonymous } |>.run' state.savedState.tactic
|
||
-- Other goals are now dormant
|
||
let otherGoals := state.goals.filter $ λ g => g != goal
|
||
return .success {
|
||
root := state.root,
|
||
savedState := nextSavedState
|
||
parentMVar? := .some goal,
|
||
convMVar? := .some (convRhs, goal, otherGoals),
|
||
calcPrevRhs? := .none
|
||
}
|
||
catch exception =>
|
||
return .failure #[← exception.toMessageData.toString]
|
||
|
||
/-- Exit from `conv` mode. Resumes all goals before the mode starts and applys the conv -/
|
||
@[export pantograph_goal_state_conv_exit_m]
|
||
protected def GoalState.convExit (state: GoalState):
|
||
Elab.TermElabM TacticResult := do
|
||
let (convRhs, convGoal, _) ← match state.convMVar? with
|
||
| .some mvar => pure mvar
|
||
| .none => return .invalidAction "Not in conv state"
|
||
let tacticM : Elab.Tactic.TacticM Elab.Tactic.SavedState:= do
|
||
-- Vide `Lean.Elab.Tactic.Conv.convert`
|
||
state.savedState.restore
|
||
|
||
-- Close all existing goals with `refl`
|
||
for mvarId in (← Elab.Tactic.getGoals) do
|
||
liftM <| mvarId.refl <|> mvarId.inferInstance <|> pure ()
|
||
Elab.Tactic.pruneSolvedGoals
|
||
unless (← Elab.Tactic.getGoals).isEmpty do
|
||
throwError "convert tactic failed, there are unsolved goals\n{Elab.goalsToMessageData (← Elab.Tactic.getGoals)}"
|
||
|
||
Elab.Tactic.setGoals [convGoal]
|
||
|
||
let targetNew ← instantiateMVars (.mvar convRhs)
|
||
let proof ← instantiateMVars (.mvar convGoal)
|
||
|
||
Elab.Tactic.liftMetaTactic1 fun mvarId => mvarId.replaceTargetEq targetNew proof
|
||
MonadBacktrack.saveState
|
||
try
|
||
let nextSavedState ← tacticM { elaborator := .anonymous } |>.run' state.savedState.tactic
|
||
return .success {
|
||
root := state.root,
|
||
savedState := nextSavedState
|
||
parentMVar? := .some convGoal,
|
||
convMVar? := .none
|
||
calcPrevRhs? := .none
|
||
}
|
||
catch exception =>
|
||
return .failure #[← exception.toMessageData.toString]
|
||
|
||
protected def GoalState.calcPrevRhsOf? (state: GoalState) (goal: MVarId): Option Expr := do
|
||
let (mvarId, rhs) ← state.calcPrevRhs?
|
||
if mvarId == goal then
|
||
.some rhs
|
||
else
|
||
.none
|
||
@[export pantograph_goal_state_try_calc_m]
|
||
protected def GoalState.tryCalc (state: GoalState) (goal: MVarId) (pred: String):
|
||
Elab.TermElabM TacticResult := do
|
||
state.restoreElabM
|
||
if state.convMVar?.isSome then
|
||
return .invalidAction "Cannot initiate `calc` while in `conv` state"
|
||
let `(term|$pred) ← match Parser.runParserCategory
|
||
(env := state.env)
|
||
(catName := `term)
|
||
(input := pred)
|
||
(fileName := filename) with
|
||
| .ok syn => pure syn
|
||
| .error error => return .parseError error
|
||
goal.checkNotAssigned `GoalState.tryCalc
|
||
let calcPrevRhs? := state.calcPrevRhsOf? goal
|
||
let decl ← goal.getDecl
|
||
let target ← instantiateMVars decl.type
|
||
let tag := decl.userName
|
||
try
|
||
goal.withContext do
|
||
|
||
let mut step ← Elab.Term.elabType <| ← do
|
||
if let some prevRhs := calcPrevRhs? then
|
||
Elab.Term.annotateFirstHoleWithType pred (← Meta.inferType prevRhs)
|
||
else
|
||
pure pred
|
||
|
||
let some (_, lhs, rhs) ← Elab.Term.getCalcRelation? step |
|
||
throwErrorAt pred "invalid 'calc' step, relation expected{indentExpr step}"
|
||
if let some prevRhs := calcPrevRhs? then
|
||
unless ← Meta.isDefEqGuarded lhs prevRhs do
|
||
throwErrorAt pred "invalid 'calc' step, left-hand-side is{indentD m!"{lhs} : {← Meta.inferType lhs}"}\nprevious right-hand-side is{indentD m!"{prevRhs} : {← Meta.inferType prevRhs}"}" -- "
|
||
|
||
-- Creates a mvar to represent the proof that the calc tactic solves the
|
||
-- current branch
|
||
-- In the Lean `calc` tactic this is gobbled up by
|
||
-- `withCollectingNewGoalsFrom`
|
||
let mut proof ← Meta.mkFreshExprMVarAt (← getLCtx) (← Meta.getLocalInstances) step
|
||
(userName := tag ++ `calc)
|
||
let mvarBranch := proof.mvarId!
|
||
|
||
let mut proofType ← Meta.inferType proof
|
||
let mut remainder? := Option.none
|
||
|
||
-- The calc tactic either solves the main goal or leaves another relation.
|
||
-- Replace the main goal, and save the new goal if necessary
|
||
unless ← Meta.isDefEq proofType target do
|
||
let rec throwFailed :=
|
||
throwError "'calc' tactic failed, has type{indentExpr proofType}\nbut it is expected to have type{indentExpr target}"
|
||
let some (_, _, rhs) ← Elab.Term.getCalcRelation? proofType | throwFailed
|
||
let some (r, _, rhs') ← Elab.Term.getCalcRelation? target | throwFailed
|
||
let lastStep := mkApp2 r rhs rhs'
|
||
let lastStepGoal ← Meta.mkFreshExprSyntheticOpaqueMVar lastStep tag
|
||
(proof, proofType) ← Elab.Term.mkCalcTrans proof proofType lastStepGoal lastStep
|
||
unless ← Meta.isDefEq proofType target do throwFailed
|
||
remainder? := .some lastStepGoal.mvarId!
|
||
goal.assign proof
|
||
|
||
let goals := [ mvarBranch ] ++ remainder?.toList
|
||
let calcPrevRhs? := remainder?.map $ λ g => (g, rhs)
|
||
return .success {
|
||
root := state.root,
|
||
savedState := {
|
||
term := ← MonadBacktrack.saveState,
|
||
tactic := { goals },
|
||
},
|
||
parentMVar? := .some goal,
|
||
calcPrevRhs?
|
||
}
|
||
catch exception =>
|
||
return .failure #[← exception.toMessageData.toString]
|
||
|
||
end Pantograph
|