Skip to content

GitLab

  • Menu
Projects Groups Snippets
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • Iris Iris
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 153
    • Issues 153
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 8
    • Merge requests 8
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Iris
  • IrisIris
  • Merge requests
  • !772

Stop `iAssumption` from unifying evar premises with `False`

  • Review changes

  • Download
  • Email patches
  • Plain diff
Merged Janno requested to merge janno/defuse-iAssumption into master Jan 13, 2022
  • Overview 16
  • Commits 6
  • Pipelines 7
  • Changes 4

Opening this so that I don't forget about it. The following example (thanks @Blaisorblade) should show the current, unwanted behavior so I should probably add this as a test case:

Lemma foo {M} : ⊢ ∃ (P : uPred M), P -∗ (∀ (x : nat), ⌜ x = x ⌝) ∗ P.
Proof.
  iExists ?[P]. (* [iExists _.] also works. *)
  iIntros "P". iSplit. 
  iIntros (x).
  Fail iApply "P".
  iAssumption.
  Show.
  (*
   M : ucmraT
  ============================
  "P" : False
  --------------------------------------∗
  False
  *)
Edited Jan 24, 2022 by Janno
Assignee
Assign to
Reviewer
Request review from
Time tracking
Source branch: janno/defuse-iAssumption