Returns the ExtensionState for the default grind attribute.
Equations
- Lean.Meta.Grind.getDefaultExtensionState = do let __do_lift ← Lean.getEnv pure (Lean.ScopedEnvExtension.getState Lean.Meta.Grind.grindExt __do_lift)
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
- config : Grind.Config
- extensions : ExtensionStateArray
- extra : PArray EMatchTheorem
- extraInj : PArray InjectiveTheorem
- symPrios : SymbolPriorities
- norm : Simp.Context
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Lean.Meta.Grind.mkDefaultParams config = do let __do_lift ← Lean.Meta.Grind.getDefaultExtensionState Lean.Meta.Grind.mkParams config #[__do_lift]
Instances For
Equations
- Lean.Meta.Grind.mkOnlyParams config = do let __do_lift ← Lean.Meta.Grind.getOnlyExtensionState Lean.Meta.Grind.mkParams config #[__do_lift]
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Asserts extra facts provided as grind parameters.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Returns a new goal for the given metavariable.
Equations
- One or more equations did not get rendered due to their size.
Instances For
- issues : List MessageData
- config : Grind.Config
- counters : Counters
- simp : Simp.Stats
- splitDiags : PArray SplitDiagInfo
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
When Config.revert := false, we preprocess the hypotheses, and add them to the grind state.
It starts at goal.nextDeclIdx. If num? is some num, then at most num local declarations are processed.
Otherwise, all remaining local declarations are processed.
Remark: this function assumes the local context does not contains holes with none in decls.
Equations
- Lean.Meta.Grind.processHypotheses goal num? = Lean.Meta.Grind.GoalM.run' goal (discard (Lean.Meta.Grind.processHypotheses.go✝ goal num?).run)
Instances For
A helper combinator for executing a grind-based terminal tactic.
Given an input goal mvarId, it first abstracts meta-variables, cleans up local hypotheses
corresponding to internal details, creates an auxiliary meta-variable mvarId', and executes k mvarId'.
The execution is performed in a new meta-variable context depth to ensure that universe meta-variables
cannot be accidentally assigned by grind. If k fails, it admits the input goal.
See issue #11806 for a motivating example.
Equations
- One or more equations did not get rendered due to their size.