File: siprop.v

package info (click to toggle)
coq-iris 4.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,116 kB
  • sloc: python: 130; makefile: 61; sh: 28; sed: 2
file content (15 lines) | stat: -rw-r--r-- 424 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
From stdpp Require Import strings.
From iris.si_logic Require Import bi.
Unset Mangle Names.

Check "unseal_test".
Lemma unseal_test (P Q : siProp) (Φ : nat → siProp) :
  P ∧ ▷ Q ∧ (∃ x, Φ x) ⊣⊢ ∃ x, P ∗ ▷ Q ∧ emp ∨ Φ x.
Proof.
  siProp.unseal.
  Show.
Abort.

(** Make sure that [siProp]s are parsed in [bi_scope]. *)
Definition test : siProp := ▷ True.
Definition testI : siPropI := ▷ True.