Make `iFrame` fail if more work remains
This addresses #582
Simple example:
Lemma foo `{BiAffine PROP} (P Q : PROP) : P -∗ Q -∗ P.
Proof.
iIntros "HP HQ".
Fail iFrame "HP HQ". (* Framing [HP] turns the goal into [True], but more work
(framing [HQ]) remains, hence [iFrame] fails. *)
Fail iFrame "HQ HP". (* Fails because [HQ] cannot be framed in the first place. *)
Abort.
Merge request reports
Activity
- Resolved by Robbert Krebbers
changed this file in version 3 of the diff
added 23 commits
Toggle commit listadded 1 commit
- ee4dc96c - Add comment and fix inconsistency with the comment.
added 1 commit
- 79309366 - Add comment and fix inconsistency with the comment.
437 449 | [] => idtac 438 | SelPure :: ?Hs => iFrameAnyPure; _iFrame_go Hs 439 | SelIntuitionistic :: ?Hs => iFrameAnyIntuitionistic; _iFrame_go Hs 440 | SelSpatial :: ?Hs => iFrameAnySpatial; _iFrame_go Hs 441 | SelIdent ?H :: ?Hs => iFrameHyp H; _iFrame_go Hs 450 | SelPure :: ?Hs => _iFrameAnyPure; _iFrame_go Hs 451 | SelIntuitionistic :: ?Hs => _iFrameAnyIntuitionistic; _iFrame_go Hs 452 | SelSpatial :: ?Hs => _iFrameAnySpatial; _iFrame_go Hs 453 | SelIdent ?H :: ?Hs => _iFrameHyp H; _iFrame_go Hs 442 454 end. 443 455 444 456 Ltac _iFrame0 Hs := 445 457 let Hs := sel_pat.parse Hs in 446 _iFrame_go Hs. 458 (** An explicit call to frame nothing (i.e., [iFrame ""]) should not 459 accidentally close the goal using [_iFrameFinish]. *) For tactic programming it turned out to be more convenient if it does not close the goal. Consider
iSpecialize ("H []")
versusiSpecialize ("H [$H]")
. Currently the first always gives a goal, even if it'sTrue
/emp
. The second will close the goal if framingH
results inTrue
/emp
Of course, we could change the behavior of
iSpecialize
or have aniFrame
wrapper foriSpecialize
. But sinceiFrame ""
is really an uninteresting edge case for users, I don't think this is worth the effort.The parser turns the specialization pattern in an element of record
spec_goal
, which contains a list of hypotheses that should be framed. The spec pattern code then just callsiFrame
on that list.If you care strongly about this edge case, we can either inline the case distinction in
iSpecializeArgs_go
or create a wrapper function foriFrame
that is called there.Edited by Robbert KrebbersThe parser turns the specialization pattern in an element of record
spec_goal
, which contains a list of hypotheses that should be framed. The spec pattern code then just callsiFrame
on that list.I guess I expected this to be an
option list
so that we avoid callingiFrame
if there was no$
pattern.I don't care super strongly but it does seem a bit clear, so if it's easy maybe we should do it?
added S-waiting-for-author label