Set the kind of a LocalDecl
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Set the kind of the given fvar.
Equations
- Lean.LocalContext.setKind lctx fvarId kind = Lean.LocalContext.modifyLocalDecl lctx fvarId fun x => Lean.LocalDecl.setKind x kind
Instances For
Sort the given FVarId
s by the order in which they appear in lctx
. If any of
the FVarId
s do not appear in lctx
, the result is unspecified.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Sort the given FVarId
s by the order in which they appear in the current local
context. If any of the FVarId
s do not appear in the current local context, the
result is unspecified.
Equations
- Lean.Meta.sortFVarsByContextOrder hyps = do let __do_lift ← Lean.getLCtx pure (Lean.LocalContext.sortFVarsByContextOrder __do_lift hyps)
Instances For
Get the MetavarDecl
of mvarId
. If mvarId
is not a declared metavariable
in the given MetavarContext
, throw an error.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Declare a metavariable. You must make sure that the metavariable is not already declared.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Check whether a metavariable is assigned or delayed-assigned. A delayed-assigned metavariable is already 'solved' but the solution cannot be substituted yet because we have to wait for some other metavariables to be assigned first. So in most situations you want to treat a delayed-assigned metavariable as assigned.
Equations
- Lean.MetavarContext.isExprMVarAssignedOrDelayedAssigned mctx mvarId = (Lean.PersistentHashMap.contains mctx.eAssignment mvarId || Lean.PersistentHashMap.contains mctx.dAssignment mvarId)
Instances For
Check whether a metavariable is declared in the given MetavarContext
.
Equations
- Lean.MetavarContext.isExprMVarDeclared mctx mvarId = Lean.PersistentHashMap.contains mctx.decls mvarId
Instances For
Add a delayed assignment for the given metavariable. You must make sure that the metavariable is not already assigned or delayed-assigned.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Erase any assignment or delayed assignment of the given metavariable.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Modify the declaration of a metavariable. If the metavariable is not declared,
the MetavarContext
is returned unchanged.
You must ensure that the modification is legal. In particular, expressions may only be replaced with defeq expressions.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Modify the local context of a metavariable. If the metavariable is not declared,
the MetavarContext
is returned unchanged.
You must ensure that the modification is legal. In particular, expressions may only be replaced with defeq expressions.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Set the kind of an fvar. If the given metavariable is not declared or the
given fvar doesn't exist in its context, the MetavarContext
is returned
unchanged.
Equations
- Lean.MetavarContext.setFVarKind mctx mvarId fvarId kind = Lean.MetavarContext.modifyExprMVarLCtx mctx mvarId fun x => Lean.LocalContext.setKind x fvarId kind
Instances For
Set the BinderInfo
of an fvar. If the given metavariable is not declared or
the given fvar doesn't exist in its context, the MetavarContext
is returned
unchanged.
Equations
- Lean.MetavarContext.setFVarBinderInfo mctx mvarId fvarId bi = Lean.MetavarContext.modifyExprMVarLCtx mctx mvarId fun x => Lean.LocalContext.setBinderInfo x fvarId bi
Instances For
Obtain all unassigned metavariables from the given MetavarContext
. If
includeDelayed
is true
, delayed-assigned metavariables are considered
unassigned.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Check whether a metavariable is assigned or delayed-assigned. A delayed-assigned metavariable is already 'solved' but the solution cannot be substituted yet because we have to wait for some other metavariables to be assigned first. So in most situations you want to treat a delayed-assigned metavariable as assigned.
Equations
- Lean.MVarId.isAssignedOrDelayedAssigned mvarId = do let __do_lift ← Lean.getMCtx pure (Lean.MetavarContext.isExprMVarAssignedOrDelayedAssigned __do_lift mvarId)
Instances For
Check whether a metavariable is declared.
Equations
- Lean.MVarId.isDeclared mvarId = do let __do_lift ← Lean.getMCtx pure (Lean.MetavarContext.isExprMVarDeclared __do_lift mvarId)
Instances For
Add a delayed assignment for the given metavariable. You must make sure that the metavariable is not already assigned or delayed-assigned.
Equations
- Lean.MVarId.delayedAssign mvarId ass = Lean.modifyMCtx fun x => Lean.MetavarContext.delayedAssignExprMVar x mvarId ass
Instances For
Erase any assignment or delayed assignment of the given metavariable.
Equations
- Lean.MVarId.eraseAssignment mvarId = Lean.modifyMCtx fun x => Lean.MetavarContext.eraseExprMVarAssignment x mvarId
Instances For
Modify the declaration of a metavariable. If the metavariable is not declared, nothing happens.
You must ensure that the modification is legal. In particular, expressions may only be replaced with defeq expressions.
Equations
- Lean.MVarId.modifyDecl mvarId f = Lean.modifyMCtx fun x => Lean.MetavarContext.modifyExprMVarDecl x mvarId f
Instances For
Modify the local context of a metavariable. If the metavariable is not declared, nothing happens.
You must ensure that the modification is legal. In particular, expressions may only be replaced with defeq expressions.
Equations
- Lean.MVarId.modifyLCtx mvarId f = Lean.modifyMCtx fun x => Lean.MetavarContext.modifyExprMVarLCtx x mvarId f
Instances For
Set the kind of an fvar. If the given metavariable is not declared or the given fvar doesn't exist in its context, nothing happens.
Equations
- Lean.MVarId.setFVarKind mvarId fvarId kind = Lean.modifyMCtx fun x => Lean.MetavarContext.setFVarKind x mvarId fvarId kind
Instances For
Set the BinderInfo
of an fvar. If the given metavariable is not declared or
the given fvar doesn't exist in its context, nothing happens.
Equations
- Lean.MVarId.setFVarBinderInfo mvarId fvarId bi = Lean.modifyMCtx fun x => Lean.MetavarContext.setFVarBinderInfo x mvarId fvarId bi
Instances For
Collect the metavariables which mvarId
depends on. These are the metavariables
which appear in the type and local context of mvarId
, as well as the
metavariables which those metavariables depend on, etc.
Equations
- Lean.MVarId.getMVarDependencies mvarId includeDelayed = (fun x => x.snd) <$> StateRefT'.run (Lean.MVarId.getMVarDependencies.go includeDelayed mvarId) ∅
Instances For
Auxiliary definition for getMVarDependencies
.
Auxiliary definition for getMVarDependencies
.
Obtain all unassigned metavariables. If includeDelayed
is true
,
delayed-assigned metavariables are considered unassigned.
Equations
- Lean.Meta.getUnassignedExprMVars includeDelayed = do let __do_lift ← Lean.getMCtx pure (Lean.MetavarContext.unassignedExprMVars __do_lift includeDelayed)
Instances For
Run a computation with hygiene turned off.
Equations
- Lean.Meta.unhygienic x = Lean.withOptions (fun x => Lean.Option.set x Lean.Meta.tactic.hygienic false) x
Instances For
A variant of mkFreshId
which generates names with a particular prefix. The
generated names are unique and have the form
where N
is a
natural number. They are not suitable as user-facing names.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Implementation of repeat'
and repeat1'
.
repeat'Core f
runs f
on all of the goals to produce a new list of goals,
then runs f
again on all of those goals, and repeats until f
fails on all remaining goals,
or until maxIters
total calls to f
have occurred.
Returns a boolean indicating whether f
succeeded at least once, and
all the remaining goals (i.e. those on which f
failed).
Equations
- One or more equations did not get rendered due to their size.
Instances For
Auxiliary for repeat'Core
. repeat'Core.go f maxIters progress gs stk acc
evaluates to
essentially acc.toList ++ repeat' f (gs::stk).join maxIters
: that is, acc
are goals we will
not revisit, and (gs::stk).join
is the accumulated todo list of subgoals.
Equations
- One or more equations did not get rendered due to their size.
- Lean.Meta.repeat'Core.go f x x [] [] x = pure (x, x)
- Lean.Meta.repeat'Core.go f x x [] (gs :: stk) x = Lean.Meta.repeat'Core.go f x x gs stk x
Instances For
repeat' f
runs f
on all of the goals to produce a new list of goals,
then runs f
again on all of those goals, and repeats until f
fails on all remaining goals,
or until maxIters
total calls to f
have occurred.
Always succeeds (returning the original goals if f
fails on all of them).
Equations
- Lean.Meta.repeat' f gs maxIters = Lean.Meta.repeat'Core f gs maxIters <&> fun x => x.snd
Instances For
repeat1' f
runs f
on all of the goals to produce a new list of goals,
then runs f
again on all of those goals, and repeats until f
fails on all remaining goals,
or until maxIters
total calls to f
have occurred.
Fails if f
does not succeed at least once.
Equations
- One or more equations did not get rendered due to their size.
Instances For
saturate1 goal tac
runs tac
on goal
, then on the resulting goals, etc.,
until tac
does not apply to any goal any more (i.e. it returns none
). The
order of applications is depth-first, so if tac
generates goals [g₁, g₂, ⋯]
,
we apply tac
to g₁
and recursively to all its subgoals before visiting g₂
.
If tac
does not apply to goal
, saturate1
returns none
. Otherwise it
returns the generated subgoals to which tac
did not apply. saturate1
respects the MonadRecDepth
recursion limit.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Auxiliary definition for saturate1
.