Introduce a new proof-mode hypothesis proved by the given term.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Specialize the hypothesis at the given index with the supplied arguments.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Syntax category for the clause of a tla_have.
Equations
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
A tla_have clause stating a formula proved by a tactic block.
Equations
- One or more equations did not get rendered due to their size.
Instances For
A tla_have clause assigning a term.
Equations
- One or more equations did not get rendered due to their size.
Instances For
tla_have h : p by tac adds a new temporal hypothesis h : p to the
proof-mode context, after tac proves p from the current context.
For example, if the current context can prove p, then
tla_have hp : p by
exact pred_implies_refl _
adds hp : p to the proof-mode context and returns to the original goal.
tla_have h := t adds the temporal fact obtained from t. For example,
tla_have hq := lemma hp
adds the result of applying lemma to the temporal hypothesis hp.
Equations
- One or more equations did not get rendered due to their size.
Instances For
tla_replace h := t replaces the named proof-mode hypothesis h by the
temporal fact obtained from t.
For example, if hp : p and lem : (p) |-tla- (q), then
tla_replace hp := lem hp
removes hp : p and adds hp : q. The replacement is appended at the end of
the proof-mode context, as if tla_have, tla_clear, and tla_rename had
been used in sequence.
Equations
- One or more equations did not get rendered due to their size.
Instances For
tla_suffices h : p by tac changes the main goal to proving p. The block
tac must show that the original goal follows after adding h : p to the
proof-mode context.
For example,
tla_suffices h : p ∧ q by
tla_rcases h with ⟨hp, hq⟩
leaves the new main goal p ∧ q; inside the by block, the original goal is
available with an extra temporal hypothesis h : p ∧ q.
Equations
- One or more equations did not get rendered due to their size.