feat: Conv tactic mode

This commit is contained in:
Leni Aniva 2024-04-07 17:03:49 -07:00
parent aba1d9be10
commit ab0d87450a
Signed by: aniva
GPG Key ID: 4D9B1C8D10EA4C50
2 changed files with 11 additions and 17 deletions

View File

@ -253,21 +253,15 @@ protected def GoalState.tryConv (state: GoalState) (goalId: Nat):
| .none => return .indexError goalId
let tacticM : Elab.Tactic.TacticM Elab.Tactic.SavedState:= do
state.restoreTacticM goal
--let mm ← Meta.matchEq? (← goal.getType)
--if let .some (_, _, rhs) := mm then
-- if rhs.getAppFn.isMVar then
-- IO.println "isMVar ok"
-- else
-- IO.println "isMVar failed"
--else
-- IO.println "matchEq? failed"
IO.println s!"Old goals: {(← Elab.Tactic.getGoals).map (λ x => x.name.toString)}"
--Elab.Tactic.Conv.remarkAsConvGoal
let goalNew ← Elab.Tactic.Conv.markAsConvGoal goal
-- TODO: Error if `goal == goalNew`
Elab.Tactic.setGoals [goalNew]
--Elab.Tactic.Conv.remarkAsConvGoal
IO.println s!"New goals: {(← Elab.Tactic.getGoals).map (λ x => x.name.toString)}"
-- TODO: Fail if this is already in conv
-- See Lean.Elab.Tactic.Conv.convTarget
Elab.Tactic.withMainContext do
-- TODO: Memorize this `rhs` as a conv resultant goal
let (rhs, newGoal) ← Elab.Tactic.Conv.mkConvGoalFor (← Elab.Tactic.getMainTarget)
Elab.Tactic.setGoals [newGoal.mvarId!]
--Elab.Tactic.liftMetaTactic1 fun mvarId => mvarId.replaceTargetEq rhs proof
MonadBacktrack.saveState
let nextSavedState ← tacticM { elaborator := .anonymous } |>.run' state.savedState.tactic
let prevMCtx := state.savedState.term.meta.meta.mctx
@ -293,7 +287,7 @@ protected def GoalState.tryConvTactic (state: GoalState) (goalId: Nat) (convTact
| .error error => return .parseError error
let tacticM : Elab.Tactic.TacticM Elab.Tactic.SavedState:= do
state.restoreTacticM goal
Elab.Tactic.Conv.evalConvTactic convTactic
Elab.Tactic.evalTactic convTactic
MonadBacktrack.saveState
let nextSavedState ← tacticM { elaborator := .anonymous } |>.run' state.savedState.tactic
let nextMCtx := nextSavedState.term.meta.meta.mctx

View File

@ -401,7 +401,7 @@ def test_conv: TestM Unit := do
addTest $ assertUnreachable $ other.toString
return ()
addTest $ LSpec.check "conv => ..." ((← state2.serializeGoals (options := ← read)).map (·.devolatilize) =
#[{ buildGoal [("a", "Nat"), ("b", "Nat"), ("c", "Nat")] "a + b + c" with isConversion := true }])
#[{ buildGoal [("a", "Nat"), ("b", "Nat"), ("c", "Nat")] "a + b + c = b + a + c" with isConversion := true }])
let convTactic := "lhs"
let state3L ← match ← state2.tryConvTactic (goalId := 0) (convTactic := convTactic) with