- innerType : Lean.Expr
Collection of variables used to keep track of the positions of binders in the construction
of below
motives and constructors.
Equations
- Lean.Meta.IndPredBelow.instInhabitedVariables = { default := { target := default, indVal := default, params := default, args := default, motives := default, innerType := default } }
- params : Array Lean.FVarId
- motives : Array Lean.FVarId
- indices : Array Lean.FVarId
- witness : Lean.FVarId
- indHyps : Array Lean.FVarId
Collection of variables used to keep track of the local context used in the brecOn
proof.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- Lean.Meta.IndPredBelow.mkContext.mkIndValConst indVal = Lean.mkConst indVal.toConstantVal.name (List.map Lean.mkLevelParam indVal.toConstantVal.levelParams)
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- Lean.Meta.IndPredBelow.mkCtorType.copyVarName oldName = do let binderDecl ← Lean.Meta.getLocalDecl oldName liftM (Lean.mkFreshUserName (Lean.LocalDecl.userName binderDecl))
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Given a constructor name, find the indices of the corresponding below
version thereof.
Equations
- One or more equations did not get rendered due to their size.
This function adds an additional below
discriminant to a matcher application.
It is used for modifying the patterns, such that the structural recursion can use the new
below
predicate instead of the original one and thus be used prove structural recursion.
It takes as parameters:
- matcherApp: a matcher application
- belowMotive: the motive, that the `below` type should carry
- below: an expression from the local context that is the `below` version of a predicate
and can be used for structural recursion
- idx: the index of the original predicate discriminant.
It returns:
- A matcher application as an expression
- A side-effect for adding the matcher to the environment
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
this function changes the type of the pattern from the original type to the below
version thereof.
Most of the cases don't apply. In order to change the type and the pattern to be type correct, we don't
simply recursively change all occurrences, but rather, we recursively change occurences of the constructor.
As such there are only a few cases:
- the pattern is a constructor from the original type. Here we need to:
- replace the constructor
- copy original recursive patterns and convert them to below and reintroduce them in the correct position
- turn original recursive patterns inaccessible
- introduce free variables as needed.
- it is an as
pattern. Here the contstructor could be hidden inside of it.
- it is a variable. Here you we need to introduce a fresh variable of a different type.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.