Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Iris
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gaëtan Gilbert
Iris
Commits
f661622b
Commit
f661622b
authored
5 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
BI instances for `siProp`.
parent
20996da6
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
_CoqProject
+1
-0
1 addition, 0 deletions
_CoqProject
theories/si_logic/bi.v
+170
-0
170 additions, 0 deletions
theories/si_logic/bi.v
with
171 additions
and
0 deletions
_CoqProject
+
1
−
0
View file @
f661622b
...
@@ -42,6 +42,7 @@ theories/algebra/lib/excl_auth.v
...
@@ -42,6 +42,7 @@ theories/algebra/lib/excl_auth.v
theories/algebra/lib/frac_auth.v
theories/algebra/lib/frac_auth.v
theories/algebra/lib/ufrac_auth.v
theories/algebra/lib/ufrac_auth.v
theories/si_logic/siprop.v
theories/si_logic/siprop.v
theories/si_logic/bi.v
theories/bi/notation.v
theories/bi/notation.v
theories/bi/interface.v
theories/bi/interface.v
theories/bi/derived_connectives.v
theories/bi/derived_connectives.v
...
...
This diff is collapsed.
Click to expand it.
theories/si_logic/bi.v
0 → 100644
+
170
−
0
View file @
f661622b
From
iris
.
bi
Require
Export
bi
.
From
iris
.
si_logic
Require
Export
siprop
.
Import
siProp_primitive
.
(** BI instances for [siProp], and re-stating the remaining primitive laws in
terms of the BI interface. This file does *not* unseal. *)
Definition
siProp_emp
:
siProp
:=
siProp_pure
True
.
Definition
siProp_sep
:
siProp
→
siProp
→
siProp
:=
siProp_and
.
Definition
siProp_wand
:
siProp
→
siProp
→
siProp
:=
siProp_impl
.
Definition
siProp_persistently
(
P
:
siProp
)
:
siProp
:=
P
.
Definition
siProp_plainly
(
P
:
siProp
)
:
siProp
:=
P
.
Local
Existing
Instance
entails_po
.
Lemma
siProp_bi_mixin
:
BiMixin
siProp_entails
siProp_emp
siProp_pure
siProp_and
siProp_or
siProp_impl
(
@
siProp_forall
)
(
@
siProp_exist
)
siProp_sep
siProp_wand
siProp_persistently
.
Proof
.
split
.
-
exact
:
entails_po
.
-
exact
:
equiv_spec
.
-
exact
:
pure_ne
.
-
exact
:
and_ne
.
-
exact
:
or_ne
.
-
exact
:
impl_ne
.
-
exact
:
forall_ne
.
-
exact
:
exist_ne
.
-
exact
:
and_ne
.
-
exact
:
impl_ne
.
-
solve_proper
.
-
exact
:
pure_intro
.
-
exact
:
pure_elim'
.
-
exact
:
@
pure_forall_2
.
-
exact
:
and_elim_l
.
-
exact
:
and_elim_r
.
-
exact
:
and_intro
.
-
exact
:
or_intro_l
.
-
exact
:
or_intro_r
.
-
exact
:
or_elim
.
-
exact
:
impl_intro_r
.
-
exact
:
impl_elim_l'
.
-
exact
:
@
forall_intro
.
-
exact
:
@
forall_elim
.
-
exact
:
@
exist_intro
.
-
exact
:
@
exist_elim
.
-
(* (P ⊢ Q) → (P' ⊢ Q') → P ∗ P' ⊢ Q ∗ Q' *)
intros
P
P'
Q
Q'
H1
H2
.
apply
and_intro
.
+
by
etrans
;
first
apply
and_elim_l
.
+
by
etrans
;
first
apply
and_elim_r
.
-
(* P ⊢ emp ∗ P *)
intros
P
.
apply
and_intro
;
last
done
.
by
apply
pure_intro
.
-
(* emp ∗ P ⊢ P *)
intros
P
.
apply
and_elim_r
.
-
(* P ∗ Q ⊢ Q ∗ P *)
intros
P
Q
.
apply
and_intro
.
apply
and_elim_r
.
apply
and_elim_l
.
-
(* (P ∗ Q) ∗ R ⊢ P ∗ (Q ∗ R) *)
intros
P
Q
R
.
repeat
apply
and_intro
.
+
etrans
;
first
apply
and_elim_l
.
by
apply
and_elim_l
.
+
etrans
;
first
apply
and_elim_l
.
by
apply
and_elim_r
.
+
apply
and_elim_r
.
-
(* (P ∗ Q ⊢ R) → P ⊢ Q -∗ R *)
apply
impl_intro_r
.
-
(* (P ⊢ Q -∗ R) → P ∗ Q ⊢ R *)
apply
impl_elim_l'
.
-
(* (P ⊢ Q) → <pers> P ⊢ <pers> Q *)
done
.
-
(* <pers> P ⊢ <pers> <pers> P *)
done
.
-
(* emp ⊢ <pers> emp *)
done
.
-
(* (∀ a, <pers> (Ψ a)) ⊢ <pers> (∀ a, Ψ a) *)
done
.
-
(* <pers> (∃ a, Ψ a) ⊢ ∃ a, <pers> (Ψ a) *)
done
.
-
(* <pers> P ∗ Q ⊢ <pers> P *)
apply
and_elim_l
.
-
(* <pers> P ∧ Q ⊢ P ∗ Q *)
done
.
Qed
.
Lemma
siProp_sbi_mixin
:
SbiMixin
siProp_entails
siProp_pure
siProp_or
siProp_impl
(
@
siProp_forall
)
(
@
siProp_exist
)
siProp_sep
siProp_persistently
(
@
siProp_internal_eq
)
siProp_later
.
Proof
.
split
.
-
exact
:
later_contractive
.
-
exact
:
internal_eq_ne
.
-
exact
:
@
internal_eq_refl
.
-
exact
:
@
internal_eq_rewrite
.
-
exact
:
@
fun_ext
.
-
exact
:
@
sig_eq
.
-
exact
:
@
discrete_eq_1
.
-
exact
:
@
later_eq_1
.
-
exact
:
@
later_eq_2
.
-
exact
:
later_mono
.
-
exact
:
later_intro
.
-
exact
:
@
later_forall_2
.
-
exact
:
@
later_exist_false
.
-
(* ▷ (P ∗ Q) ⊢ ▷ P ∗ ▷ Q *)
intros
P
Q
.
apply
and_intro
;
apply
later_mono
.
apply
and_elim_l
.
apply
and_elim_r
.
-
(* ▷ P ∗ ▷ Q ⊢ ▷ (P ∗ Q) *)
intros
P
Q
.
trans
(
siProp_forall
(
λ
b
:
bool
,
siProp_later
(
if
b
then
P
else
Q
)))
.
{
apply
forall_intro
=>
-
[]
.
apply
and_elim_l
.
apply
and_elim_r
.
}
etrans
;
[
apply
later_forall_2
|
apply
later_mono
]
.
apply
and_intro
.
refine
(
forall_elim
true
)
.
refine
(
forall_elim
false
)
.
-
(* ▷ <pers> P ⊢ <pers> ▷ P *)
done
.
-
(* <pers> ▷ P ⊢ ▷ <pers> P *)
done
.
-
exact
:
later_false_em
.
Qed
.
Canonical
Structure
siPropI
:
bi
:=
{|
bi_ofe_mixin
:=
ofe_mixin_of
siProp
;
bi_bi_mixin
:=
siProp_bi_mixin
|}
.
Canonical
Structure
siPropSI
:
sbi
:=
{|
sbi_ofe_mixin
:=
ofe_mixin_of
siProp
;
sbi_bi_mixin
:=
siProp_bi_mixin
;
sbi_sbi_mixin
:=
siProp_sbi_mixin
|}
.
Coercion
siProp_valid
(
P
:
siProp
)
:
Prop
:=
bi_emp_valid
P
.
Lemma
siProp_plainly_mixin
:
BiPlainlyMixin
siPropSI
siProp_plainly
.
Proof
.
split
;
try
done
.
-
solve_proper
.
-
(* P ⊢ ■ emp *)
intros
P
.
by
apply
pure_intro
.
-
(* ■ P ∗ Q ⊢ ■ P *)
intros
P
Q
.
apply
and_elim_l
.
-
(* ■ ((P -∗ Q) ∧ (Q -∗ P)) ⊢ P ≡ Q *)
intros
P
Q
.
apply
prop_ext_2
.
Qed
.
Global
Instance
siProp_plainlyC
:
BiPlainly
siPropSI
:=
{|
bi_plainly_mixin
:=
siProp_plainly_mixin
|}
.
(** extra BI instances *)
Global
Instance
siProp_affine
:
BiAffine
siPropI
|
0
.
Proof
.
intros
P
.
exact
:
pure_intro
.
Qed
.
(* Also add this to the global hint database, otherwise [eauto] won't work for
many lemmas that have [BiAffine] as a premise. *)
Hint
Immediate
siProp_affine
:
core
.
Global
Instance
siProp_plain
(
P
:
siProp
)
:
Plain
P
|
0
.
Proof
.
done
.
Qed
.
Global
Instance
siProp_persistent
(
P
:
siProp
)
:
Persistent
P
.
Proof
.
done
.
Qed
.
Global
Instance
siProp_plainly_exist_1
:
BiPlainlyExist
siPropSI
.
Proof
.
done
.
Qed
.
(** Re-state/export soundness lemmas *)
Module
siProp
.
Section
restate
.
Lemma
pure_soundness
φ
:
bi_emp_valid
(
PROP
:=
siPropI
)
⌜
φ
⌝
→
φ
.
Proof
.
apply
pure_soundness
.
Qed
.
Lemma
internal_eq_soundness
{
A
:
ofeT
}
(
x
y
:
A
)
:
(
True
⊢@
{
siPropI
}
x
≡
y
)
→
x
≡
y
.
Proof
.
apply
internal_eq_soundness
.
Qed
.
Lemma
later_soundness
P
:
bi_emp_valid
(
PROP
:=
siPropI
)
(
▷
P
)
→
bi_emp_valid
P
.
Proof
.
apply
later_soundness
.
Qed
.
End
restate
.
End
siProp
.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment