mathlib3 documentation

core / init.meta.instance_cache

Instance cache tactics #

For performance reasons, Lean does not automatically update its database of class instances during a proof. The group of tactics in this file helps to force such updates.

Reset the instance cache for the main goal.

meta def tactic.unfreezing {α : Type} (tac : tactic α) :

Unfreeze the local instances while executing tac on the main goal.

meta def tactic.unfreezing_hyp (h : expr) (tac : tactic unit) :

Unfreeze local instances while executing tac, if the passed expression is amongst the frozen instances.

unfreezingI { tac } executes tac while temporarily unfreezing the instance cache.

Reset the instance cache. This allows any new instances added to the context to be used in typeclass inference.

Like revert, but can also revert instance arguments.

Like subst, but can also substitute in instance arguments.

Like intro, but uses the introduced variable in typeclass inference.

Like intros, but uses the introduced variable(s) in typeclass inference.

Used to add typeclasses to the context so that they can be used in typeclass inference. The syntax is the same as have.

Used to add typeclasses to the context so that they can be used in typeclass inference. The syntax is the same as let.

Like exact, but uses all variables in the context for typeclass inference.