Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
examples
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
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
Iris
examples
Commits
005a0803
Commit
005a0803
authored
1 year ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
update dependencies
parent
3b1c1e1c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#86933
passed
1 year ago
Changes
2
Pipelines
11
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
coq-iris-examples.opam
+1
-1
1 addition, 1 deletion
coq-iris-examples.opam
theories/cl_logic/bi.v
+13
-4
13 additions, 4 deletions
theories/cl_logic/bi.v
with
14 additions
and
5 deletions
coq-iris-examples.opam
+
1
−
1
View file @
005a0803
...
...
@@ -8,7 +8,7 @@ dev-repo: "git+https://gitlab.mpi-sws.org/iris/examples.git"
synopsis: "A collection of case studies for Iris -- not meant to be used as a dependency of anything"
depends: [
"coq-iris-heap-lang" { (= "dev.2023-0
6-30.0.7e865892
") | (= "dev") }
"coq-iris-heap-lang" { (= "dev.2023-0
7-25.2.621d76cf
") | (= "dev") }
"coq-autosubst" { = "dev" }
]
...
...
This diff is collapsed.
Click to expand it.
theories/cl_logic/bi.v
+
13
−
4
View file @
005a0803
...
...
@@ -21,8 +21,7 @@ Local Existing Instance entails_po.
Lemma
clProp_bi_mixin
:
BiMixin
clProp_entails
clProp_emp
clProp_pure
clProp_and
clProp_or
clProp_impl
(
@
clProp_forall
)
(
@
clProp_exist
)
clProp_sep
clProp_wand
clProp_persistently
.
(
@
clProp_forall
)
(
@
clProp_exist
)
clProp_sep
clProp_wand
.
Proof
.
split
.
-
exact
:
entails_po
.
...
...
@@ -35,7 +34,6 @@ Proof.
-
exact
:
exist_ne
.
-
exact
:
and_ne
.
-
exact
:
impl_ne
.
-
solve_proper
.
-
exact
:
pure_intro
.
-
exact
:
pure_elim'
.
-
exact
:
and_elim_l
.
...
...
@@ -71,6 +69,15 @@ Proof.
apply
impl_intro_r
.
-
(* (P ⊢ Q -∗ R) → P ∗ Q ⊢ R *)
apply
impl_elim_l'
.
Qed
.
Lemma
clProp_bi_persistently_mixin
:
BiPersistentlyMixin
clProp_entails
clProp_emp
clProp_and
(
@
clProp_exist
)
clProp_sep
clProp_persistently
.
Proof
.
split
.
-
solve_proper
.
-
(* (P ⊢ Q) → <pers> P ⊢ <pers> Q *)
done
.
-
(* <pers> P ⊢ <pers> <pers> P *)
...
...
@@ -95,7 +102,9 @@ Proof. by eapply bi_later_mixin_id, clProp_bi_mixin. Qed.
Canonical
Structure
clPropI
:
bi
:=
{|
bi_ofe_mixin
:=
ofe_mixin_of
clProp
;
bi_bi_mixin
:=
clProp_bi_mixin
;
bi_bi_later_mixin
:=
clProp_bi_later_mixin
|}
.
bi_bi_mixin
:=
clProp_bi_mixin
;
bi_bi_persistently_mixin
:=
clProp_bi_persistently_mixin
;
bi_bi_later_mixin
:=
clProp_bi_later_mixin
|}
.
Lemma
clProp_plainly_mixin
:
BiPlainlyMixin
clPropI
clProp_plainly
.
Proof
.
...
...
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