- bestFirst: Aesop.Strategy
Best-first search. This is the default strategy.
- depthFirst: Aesop.Strategy
Depth-first search. Whenever a rule is applied, Aesop immediately tries to solve each of its subgoals (from left to right), up to the maximum rule application depth. Goal and rule priorities are ignored, except to decide which rule is applied first.
- breadthFirst: Aesop.Strategy
Breadth-first search. Aesop always works on the oldest unsolved goal. Goal and rule priorities are ignored, except to decide which rule is applied first.
Search strategies which Aesop can use.
Instances For
Equations
- Aesop.instInhabitedStrategy = { default := Aesop.Strategy.bestFirst }
Equations
- Aesop.instBEqStrategy = { beq := Aesop.beqStrategy✝ }
Equations
- Aesop.instReprStrategy = { reprPrec := Aesop.reprStrategy✝ }
- strategy : Aesop.Strategy
The search strategy used by Aesop.
- maxRuleApplicationDepth : Nat
The maximum number of rule applications in any branch of the search tree (i.e., the maximum search depth). When a branch exceeds this limit, it is considered unprovable, but other branches may still be explored. 0 means no limit.
- maxRuleApplications : Nat
Maximum total number of rule applications in the search tree. When this limit is exceeded, the search ends. 0 means no limit.
- maxGoals : Nat
Maximum total number of goals in the search tree. When this limit is exceeded, the search ends. 0 means no limit.
- maxNormIterations : Nat
Maximum number of norm rules applied to a single goal. When this limit is exceeded, normalisation is likely stuck in an infinite loop, so Aesop fails. 0 means no limit.
- applyHypsTransparency : Lean.Meta.TransparencyMode
The transparency used by the
applyHyps
builtin rule. The rule applies a hypothesish : T
ifT ≡ ∀ (x₁ : X₁) ... (xₙ : Xₙ), Y
at the given transparency and if additionally the goal's target is defeq toY
at the given transparency. - assumptionTransparency : Lean.Meta.TransparencyMode
The transparency used by the
assumption
builtin rule. The rule applies a hypothesish : T
ifT
is defeq to the goal's target at the given transparency. - destructProductsTransparency : Lean.Meta.TransparencyMode
The transparency used by the
destructProducts
builtin rule. The rule splits a hypothesish : T
ifT
is defeq to a product-like type (e.g.T ≡ A ∧ B
orT ≡ A × B
) at the given transparency.Note: we can index this rule only if the transparency is
.reducible
. With any other transparency, the rule becomes unindexed and is applied to every goal. - introsTransparency? : Option Lean.Meta.TransparencyMode
If this option is not
none
, the builtinintros
rule unfolds the goal's target with the given transparency to discover∀
binders. For example, withdef T := ∀ x y : Nat, x = y
,introsTransparency? := some .default
and goal⊢ T
, theintros
rule produces the goalx, y : Nat ⊢ x = y
. WithintrosTransparency? := some .reducible
, it produces⊢ T
. WithintrosTransparency? := none
, it only introduces arguments which are syntactically bound by∀
binders, so it also produces⊢ T
. - terminal : Bool
If
true
, Aesop succeeds only if it proves the goal. Iffalse
, Aesop always succeeds and reports the goals remaining after safe rules were applied. - warnOnNonterminal : Bool
If
true
, print a warning when Aesop does not prove the goal. - traceScript : Bool
If Aesop proves a goal and this option is
true
, Aesop prints a tactic proof as aTry this:
suggestion.
Options which modify the behaviour of the aesop
tactic.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Equations
- Aesop.instBEqOptions = { beq := Aesop.beqOptions✝ }
Equations
- Aesop.instReprOptions = { reprPrec := Aesop.reprOptions✝ }
- maxSteps : Nat
- maxDischargeDepth : Nat
- contextual : Bool
- memoize : Bool
- singlePass : Bool
- zeta : Bool
- beta : Bool
- eta : Bool
- etaStruct : Lean.Meta.EtaStructMode
- iota : Bool
- proj : Bool
- decide : Bool
- arith : Bool
- autoUnfold : Bool
- dsimp : Bool
- failIfUnchanged : Bool
- enabled : Bool
If
false
, the builtinsimp
normalisation rule is not used at all. - useHyps : Bool
If
true
, thesimp
normalisation rule works likesimp_all
. This means it uses hypotheses which are propositions or equations to simplify other hypotheses and the target.If
false
, thesimp
normalisation rule works likesimp at *
. This means hypotheses are simplified, but are not used to simplify other hypotheses and the target.
Options which modify the behaviour of the builtin simp
normalisation rule.
Extends Lean.Meta.Simp.ConfigCtx
, so any option declared there is also valid
here. For example, you can use aesop (simp_config := { arith := true })
to get
behaviour similar to simp (config := { arith := true })
(aka simp_arith
).