Information about the argument of interest of a structurally recursive function.
The Expr
s in this data structure expect the fixedParams
to be in scope, but not the other
parameters of the function. This ensures that this data structure makes sense in the other functions
of a mutually recursive group.
- fnName : Lean.Name
the name of the recursive function
- numFixed : Nat
the fixed prefix of arguments of the function we are trying to justify termination using structural recursion.
- recArgPos : Nat
position (counted including fixed prefix) of the argument we are recursing on
position (counted including fixed prefix) of the indices of the inductive datatype we are recursing on
- indGroupInst : Lean.Elab.Structural.IndGroupInst
The inductive group (with parameters) of the argument's type
- indIdx : Nat
index of the inductive datatype of the argument we are recursing on. If
< indAll.all
, a normal data type, else an auxiliary data type due to nested recursion
Instances For
Equations
If xs
are the parameters of the functions (excluding fixed prefix), partitions them
into indices and major arguments, and other parameters.
Instances For
Name of the recursive data type. Assumes that it is not one of the auxiliary ones.