You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example wrong
{Σ : Signature}
{syntax : Syntax}
(Γ : Theory)
(a b : Pattern) :
theory ⊆ Γ ->
well_formed a = true ->
well_formed b = true ->
Γ ⊢ a =ml b ---> b ---> a.
Proof.
intros.
mlIntro. mlIntro.
mlRewriteBy "0" at 1 in "1".
Abort.
"1" has no occurences of the pattern a in it, yet mlRewriteBy "0" at 1 in "1". still suceeds by rewriting the goal to b. This is due to mlRewriteBy ... in ... reverting the hypothesis, then applying the standard mlRewriteBy tactic, in which case the goal has an occurence, even if the hypothesis did not.
This was a known bug in #441, but the solution to this does not seem obvious.
The text was updated successfully, but these errors were encountered:
Take the following example:
"1"
has no occurences of the patterna
in it, yetmlRewriteBy "0" at 1 in "1".
still suceeds by rewriting the goal tob
. This is due tomlRewriteBy ... in ...
reverting the hypothesis, then applying the standardmlRewriteBy
tactic, in which case the goal has an occurence, even if the hypothesis did not.This was a known bug in #441, but the solution to this does not seem obvious.
The text was updated successfully, but these errors were encountered: