Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
Iris
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
Rodolphe Lepigre
Iris
Commits
27def119
Commit
27def119
authored
8 years ago
by
Zhen Zhang
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of gitlab.mpi-sws.org:FP/iris-coq
parents
548a5de9
3077c6c6
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
program_logic/auth.v
+1
-2
1 addition, 2 deletions
program_logic/auth.v
program_logic/saved_prop.v
+1
-1
1 addition, 1 deletion
program_logic/saved_prop.v
program_logic/sts.v
+1
-2
1 addition, 2 deletions
program_logic/sts.v
with
3 additions
and
5 deletions
program_logic/auth.v
+
1
−
2
View file @
27def119
...
...
@@ -9,9 +9,8 @@ Class authG Σ (A : ucmraT) := AuthG {
auth_inG
:>
inG
Σ
(
authR
A
);
auth_discrete
:>
CMRADiscrete
A
;
}
.
(* The global functor we need and register that they match. *)
Definition
authΣ
(
A
:
ucmraT
)
:
gFunctors
:=
#
[
GFunctor
(
constRF
(
authR
A
))
]
.
Instance
subG_authΣ
Σ
A
:
subG
(
authΣ
A
)
Σ
→
CMRADiscrete
A
→
authG
Σ
A
.
Proof
.
intros
?
%
subG_inG
?
.
by
split
.
Qed
.
...
...
This diff is collapsed.
Click to expand it.
program_logic/saved_prop.v
+
1
−
1
View file @
27def119
...
...
@@ -5,9 +5,9 @@ Import uPred.
Class
savedPropG
(
Σ
:
gFunctors
)
(
F
:
cFunctor
)
:=
saved_prop_inG
:>
inG
Σ
(
agreeR
(
laterC
(
F
(
iPreProp
Σ
))))
.
Definition
savedPropΣ
(
F
:
cFunctor
)
:
gFunctors
:=
#
[
GFunctor
(
agreeRF
(
▶
F
))
]
.
Instance
subG_savedPropΣ
{
Σ
F
}
:
subG
(
savedPropΣ
F
)
Σ
→
savedPropG
Σ
F
.
Proof
.
apply
subG_inG
.
Qed
.
...
...
This diff is collapsed.
Click to expand it.
program_logic/sts.v
+
1
−
2
View file @
27def119
...
...
@@ -8,9 +8,8 @@ Class stsG Σ (sts : stsT) := StsG {
sts_inG
:>
inG
Σ
(
stsR
sts
);
sts_inhabited
:>
Inhabited
(
sts
.
state
sts
);
}
.
(* The global functor we need and register that they match. *)
Definition
stsΣ
(
sts
:
stsT
)
:
gFunctors
:=
#
[
GFunctor
(
constRF
(
stsR
sts
))
]
.
Instance
subG_stsΣ
Σ
sts
:
subG
(
stsΣ
sts
)
Σ
→
Inhabited
(
sts
.
state
sts
)
→
stsG
Σ
sts
.
Proof
.
intros
?
%
subG_inG
?
.
by
split
.
Qed
.
...
...
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