A position of a subexpression in an expression.
We use a simple encoding scheme for expression positions Pos
:
every Expr
constructor has at most 3 direct expression children. Considering an expression's type
to be one extra child as well, we can injectively map a path of childIdxs
to a natural number
by computing the value of the 4-ary representation 1 :: childIdxs
, since n-ary representations
without leading zeros are unique. Note that pos
is initialized to 1
(case childIdxs == []
).
See also SubExpr
.
Instances For
The coordinate 3 = maxChildren - 1
is
reserved to denote the type of the expression.
Instances For
The Pos representing the root subexpression.
Instances For
The coordinate deepest in the Pos.
Instances For
Fold over the position starting at the root and heading to the leaf
Fold over the position starting at the leaf and heading to the root
monad-fold over the position starting at the root and heading to the leaf
monad-fold over the position starting at the leaf and finishing at the root.
Returns true if pred
is true for each coordinate in p
.
Instances For
Instances For
Creates a subexpression Pos
from an array of 'coordinates'.
Each coordinate is a number {0,1,2} expressing which child subexpression should be explored.
The first coordinate in the array corresponds to the root of the expression tree.
Instances For
Instances For
Instances For
Equations
Instances For
Equations
Instances For
- expr : Lean.Expr
The subexpression.
- pos : Lean.SubExpr.Pos
The position of the subexpression within the root expression.
A subexpression of some root expression. Both its value and its position within the root are stored.
Instances For
Returns true if the selected subexpression is the topmost one.
Instances For
Map from subexpr positions to values.
Instances For
- hyp: Lean.FVarId → Lean.SubExpr.GoalLocation
One of the hypotheses.
- hypType: Lean.FVarId → Lean.SubExpr.Pos → Lean.SubExpr.GoalLocation
A subexpression of the type of one of the hypotheses.
- hypValue: Lean.FVarId → Lean.SubExpr.Pos → Lean.SubExpr.GoalLocation
A subexpression of the value of one of the let-bound hypotheses.
- target: Lean.SubExpr.Pos → Lean.SubExpr.GoalLocation
A subexpression of the goal type.
A location within a goal.
Instances For
- mvarId : Lean.MVarId
Which goal the location is in.
A location within a goal state. It identifies a specific goal together with a GoalLocation
within it.
Instances For
Same as Expr.traverseApp
but also includes a
SubExpr.Pos
argument for tracking subexpression position.
Equations
- One or more equations did not get rendered due to their size.
- Lean.Expr.traverseAppWithPos visit p e = visit p e