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
Simcha van Collem
Iris
Commits
b0ed7748
Commit
b0ed7748
authored
8 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Add notation iPrePropG.
parent
f69e44a9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
program_logic/global_functor.v
+2
-1
2 additions, 1 deletion
program_logic/global_functor.v
program_logic/saved_one_shot.v
+1
-1
1 addition, 1 deletion
program_logic/saved_one_shot.v
program_logic/saved_prop.v
+1
-1
1 addition, 1 deletion
program_logic/saved_prop.v
with
4 additions
and
3 deletions
program_logic/global_functor.v
+
2
−
1
View file @
b0ed7748
...
@@ -20,6 +20,7 @@ Definition gname := positive.
...
@@ -20,6 +20,7 @@ Definition gname := positive.
Definition
globalF
(
Σ
:
gFunctors
)
:
iFunctor
:=
Definition
globalF
(
Σ
:
gFunctors
)
:
iFunctor
:=
IFunctor
(
iprodURF
(
λ
i
,
gmapURF
gname
(
projT2
Σ
i
)))
.
IFunctor
(
iprodURF
(
λ
i
,
gmapURF
gname
(
projT2
Σ
i
)))
.
Notation
iPropG
Λ
Σ
:=
(
iProp
Λ
(
globalF
Σ
))
.
Notation
iPropG
Λ
Σ
:=
(
iProp
Λ
(
globalF
Σ
))
.
Notation
iPrePropG
Λ
Σ
:=
(
iPreProp
Λ
(
globalF
Σ
))
.
Class
inG
(
Λ
:
language
)
(
Σ
:
gFunctors
)
(
A
:
cmraT
)
:=
InG
{
Class
inG
(
Λ
:
language
)
(
Σ
:
gFunctors
)
(
A
:
cmraT
)
:=
InG
{
inG_id
:
gid
Σ
;
inG_id
:
gid
Σ
;
...
@@ -114,7 +115,7 @@ their first argument to avoid loops. For example, the instances [authGF_inGF]
...
@@ -114,7 +115,7 @@ their first argument to avoid loops. For example, the instances [authGF_inGF]
and [auth_identity] otherwise create a cycle that pops up arbitrarily. *)
and [auth_identity] otherwise create a cycle that pops up arbitrarily. *)
Hint
Mode
inGF
+
+
-
:
typeclass_instances
.
Hint
Mode
inGF
+
+
-
:
typeclass_instances
.
Lemma
inGF_inG
`{
inGF
Λ
Σ
F
}
:
inG
Λ
Σ
(
F
(
iPreProp
Λ
(
globalF
Σ
)
))
.
Lemma
inGF_inG
`{
inGF
Λ
Σ
F
}
:
inG
Λ
Σ
(
F
(
iPreProp
G
Λ
Σ
))
.
Proof
.
exists
inGF_id
.
by
rewrite
-
inGF_prf
.
Qed
.
Proof
.
exists
inGF_id
.
by
rewrite
-
inGF_prf
.
Qed
.
Instance
inGF_here
{
Λ
Σ
}
(
F
:
gFunctor
)
:
inGF
Λ
(
gFunctors
.
cons
F
Σ
)
F
.
Instance
inGF_here
{
Λ
Σ
}
(
F
:
gFunctor
)
:
inGF
Λ
(
gFunctors
.
cons
F
Σ
)
F
.
Proof
.
by
exists
0
%
fin
.
Qed
.
Proof
.
by
exists
0
%
fin
.
Qed
.
...
...
This diff is collapsed.
Click to expand it.
program_logic/saved_one_shot.v
+
1
−
1
View file @
b0ed7748
...
@@ -3,7 +3,7 @@ From iris.program_logic Require Export ghost_ownership.
...
@@ -3,7 +3,7 @@ From iris.program_logic Require Export ghost_ownership.
Import
uPred
.
Import
uPred
.
Class
oneShotG
(
Λ
:
language
)
(
Σ
:
gFunctors
)
(
F
:
cFunctor
)
:=
Class
oneShotG
(
Λ
:
language
)
(
Σ
:
gFunctors
)
(
F
:
cFunctor
)
:=
one_shot_inG
:>
inG
Λ
Σ
(
one_shotR
$
agreeR
$
laterC
$
F
(
iPreProp
Λ
(
globalF
Σ
)
))
.
one_shot_inG
:>
inG
Λ
Σ
(
one_shotR
$
agreeR
$
laterC
$
F
(
iPreProp
G
Λ
Σ
))
.
Definition
oneShotGF
(
F
:
cFunctor
)
:
gFunctor
:=
Definition
oneShotGF
(
F
:
cFunctor
)
:
gFunctor
:=
GFunctor
(
one_shotRF
(
agreeRF
(
▶
F
)))
.
GFunctor
(
one_shotRF
(
agreeRF
(
▶
F
)))
.
Instance
inGF_oneShotG
`{
inGF
Λ
Σ
(
oneShotGF
F
)}
:
oneShotG
Λ
Σ
F
.
Instance
inGF_oneShotG
`{
inGF
Λ
Σ
(
oneShotGF
F
)}
:
oneShotG
Λ
Σ
F
.
...
...
This diff is collapsed.
Click to expand it.
program_logic/saved_prop.v
+
1
−
1
View file @
b0ed7748
...
@@ -3,7 +3,7 @@ From iris.program_logic Require Export ghost_ownership.
...
@@ -3,7 +3,7 @@ From iris.program_logic Require Export ghost_ownership.
Import
uPred
.
Import
uPred
.
Class
savedPropG
(
Λ
:
language
)
(
Σ
:
gFunctors
)
(
F
:
cFunctor
)
:=
Class
savedPropG
(
Λ
:
language
)
(
Σ
:
gFunctors
)
(
F
:
cFunctor
)
:=
saved_prop_inG
:>
inG
Λ
Σ
(
agreeR
(
laterC
(
F
(
iPreProp
Λ
(
globalF
Σ
)
))))
.
saved_prop_inG
:>
inG
Λ
Σ
(
agreeR
(
laterC
(
F
(
iPreProp
G
Λ
Σ
))))
.
Definition
savedPropGF
(
F
:
cFunctor
)
:
gFunctor
:=
Definition
savedPropGF
(
F
:
cFunctor
)
:
gFunctor
:=
GFunctor
(
agreeRF
(
▶
F
))
.
GFunctor
(
agreeRF
(
▶
F
))
.
Instance
inGF_savedPropG
`{
inGF
Λ
Σ
(
savedPropGF
F
)}
:
savedPropG
Λ
Σ
F
.
Instance
inGF_savedPropG
`{
inGF
Λ
Σ
(
savedPropGF
F
)}
:
savedPropG
Λ
Σ
F
.
...
...
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