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
Pierre Roux
Iris
Commits
646e26fa
Commit
646e26fa
authored
4 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Add `valid_entails` to lift `✓{n}` entailments into `uPred`.
parent
3d73e1ff
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
theories/base_logic/bi.v
+9
-1
9 additions, 1 deletion
theories/base_logic/bi.v
theories/base_logic/upred.v
+9
-1
9 additions, 1 deletion
theories/base_logic/upred.v
with
18 additions
and
2 deletions
theories/base_logic/bi.v
+
9
−
1
View file @
646e26fa
...
@@ -197,7 +197,7 @@ Lemma bupd_ownM_updateP x (Φ : M → Prop) :
...
@@ -197,7 +197,7 @@ Lemma bupd_ownM_updateP x (Φ : M → Prop) :
x
~~>:
Φ
→
uPred_ownM
x
⊢
|
==>
∃
y
,
⌜
Φ
y
⌝
∧
uPred_ownM
y
.
x
~~>:
Φ
→
uPred_ownM
x
⊢
|
==>
∃
y
,
⌜
Φ
y
⌝
∧
uPred_ownM
y
.
Proof
.
exact
:
uPred_primitive
.
bupd_ownM_updateP
.
Qed
.
Proof
.
exact
:
uPred_primitive
.
bupd_ownM_updateP
.
Qed
.
(* This is really just a special case of an entailment
(*
*
This is really just a special case of an entailment
between two [siProp], but we do not have the infrastructure
between two [siProp], but we do not have the infrastructure
to express the more general case. This temporary proof rule will
to express the more general case. This temporary proof rule will
be replaced by the proper one eventually. *)
be replaced by the proper one eventually. *)
...
@@ -225,6 +225,14 @@ Proof. exact: uPred_primitive.discrete_valid. Qed.
...
@@ -225,6 +225,14 @@ Proof. exact: uPred_primitive.discrete_valid. Qed.
Lemma
discrete_fun_validI
{
A
}
{
B
:
A
→
ucmraT
}
(
g
:
discrete_fun
B
)
:
✓
g
⊣⊢
∀
i
,
✓
g
i
.
Lemma
discrete_fun_validI
{
A
}
{
B
:
A
→
ucmraT
}
(
g
:
discrete_fun
B
)
:
✓
g
⊣⊢
∀
i
,
✓
g
i
.
Proof
.
exact
:
uPred_primitive
.
discrete_fun_validI
.
Qed
.
Proof
.
exact
:
uPred_primitive
.
discrete_fun_validI
.
Qed
.
(** This is really just a special case of an entailment
between two [siProp], but we do not have the infrastructure
to express the more general case. This temporary proof rule will
be replaced by the proper one eventually. *)
Lemma
valid_entails
{
A
B
:
cmraT
}
(
a
:
A
)
(
b
:
B
)
:
(
∀
n
,
✓
{
n
}
a
→
✓
{
n
}
b
)
→
✓
a
⊢
✓
b
.
Proof
.
exact
:
uPred_primitive
.
valid_entails
.
Qed
.
(** Consistency/soundness statement *)
(** Consistency/soundness statement *)
Lemma
pure_soundness
φ
:
(
⊢@
{
uPredI
M
}
⌜
φ
⌝
)
→
φ
.
Lemma
pure_soundness
φ
:
(
⊢@
{
uPredI
M
}
⌜
φ
⌝
)
→
φ
.
Proof
.
apply
pure_soundness
.
Qed
.
Proof
.
apply
pure_soundness
.
Qed
.
...
...
This diff is collapsed.
Click to expand it.
theories/base_logic/upred.v
+
9
−
1
View file @
646e26fa
...
@@ -720,7 +720,7 @@ Proof.
...
@@ -720,7 +720,7 @@ Proof.
unseal
=>
?
.
split
=>
n
x
?
.
by
apply
(
discrete_iff
n
)
.
unseal
=>
?
.
split
=>
n
x
?
.
by
apply
(
discrete_iff
n
)
.
Qed
.
Qed
.
(* This is really just a special case of an entailment
(*
*
This is really just a special case of an entailment
between two [siProp], but we do not have the infrastructure
between two [siProp], but we do not have the infrastructure
to express the more general case. This temporary proof rule will
to express the more general case. This temporary proof rule will
be replaced by the proper one eventually. *)
be replaced by the proper one eventually. *)
...
@@ -818,6 +818,14 @@ Proof. unseal; split=> n x _. by rewrite /= -cmra_discrete_valid_iff. Qed.
...
@@ -818,6 +818,14 @@ Proof. unseal; split=> n x _. by rewrite /= -cmra_discrete_valid_iff. Qed.
Lemma
discrete_fun_validI
{
A
}
{
B
:
A
→
ucmraT
}
(
g
:
discrete_fun
B
)
:
✓
g
⊣⊢
∀
i
,
✓
g
i
.
Lemma
discrete_fun_validI
{
A
}
{
B
:
A
→
ucmraT
}
(
g
:
discrete_fun
B
)
:
✓
g
⊣⊢
∀
i
,
✓
g
i
.
Proof
.
by
unseal
.
Qed
.
Proof
.
by
unseal
.
Qed
.
(** This is really just a special case of an entailment
between two [siProp], but we do not have the infrastructure
to express the more general case. This temporary proof rule will
be replaced by the proper one eventually. *)
Lemma
valid_entails
{
A
B
:
cmraT
}
(
a
:
A
)
(
b
:
B
)
:
(
∀
n
,
✓
{
n
}
a
→
✓
{
n
}
b
)
→
✓
a
⊢
✓
b
.
Proof
.
unseal
=>
Hval
.
split
=>
n
x
?
.
apply
Hval
.
Qed
.
(** Consistency/soundness statement *)
(** Consistency/soundness statement *)
(** The lemmas [pure_soundness] and [internal_eq_soundness] should become an
(** The lemmas [pure_soundness] and [internal_eq_soundness] should become an
instance of [siProp] soundness in the future. *)
instance of [siProp] soundness in the future. *)
...
...
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