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
dbe95c90
Verified
Commit
dbe95c90
authored
3 years ago
by
Paolo G. Giarrusso
Browse files
Options
Downloads
Patches
Plain Diff
Also hide ghost_mapG instances
parent
f063ea93
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
docs/resource_algebras.md
+2
-1
2 additions, 1 deletion
docs/resource_algebras.md
iris/base_logic/lib/gen_heap.v
+3
-3
3 additions, 3 deletions
iris/base_logic/lib/gen_heap.v
iris/base_logic/lib/proph_map.v
+2
-1
2 additions, 1 deletion
iris/base_logic/lib/proph_map.v
with
7 additions
and
5 deletions
docs/resource_algebras.md
+
2
−
1
View file @
dbe95c90
...
@@ -119,8 +119,9 @@ class for the generalized heap module, bundles the usual `inG` assumptions
...
@@ -119,8 +119,9 @@ class for the generalized heap module, bundles the usual `inG` assumptions
together with the
`gname`
:
together with the
`gname`
:
```
coq
```
coq
Class
gen_heapGpreS
(
L
V
:
Type
)
(
Σ
:
gFunctors
)
`{
Countable
L
}
:=
{
Class
gen_heapGpreS
(
L
V
:
Type
)
(
Σ
:
gFunctors
)
`{
Countable
L
}
:=
{
gen_heapGpreS_heap
:
>
ghost_mapG
Σ
L
V
;
gen_heapGpreS_heap
:
ghost_mapG
Σ
L
V
;
}
.
}
.
Local
Existing
Instances
gen_heapGpreS_heap
.
Class
gen_heapGS
(
L
V
:
Type
)
(
Σ
:
gFunctors
)
`{
Countable
L
}
:=
GenHeapGS
{
Class
gen_heapGS
(
L
V
:
Type
)
(
Σ
:
gFunctors
)
`{
Countable
L
}
:=
GenHeapGS
{
gen_heap_inG
:>
gen_heapGpreS
L
V
Σ
;
gen_heap_inG
:>
gen_heapGpreS
L
V
Σ
;
gen_heap_name
:
gname
;
gen_heap_name
:
gname
;
...
...
This diff is collapsed.
Click to expand it.
iris/base_logic/lib/gen_heap.v
+
3
−
3
View file @
dbe95c90
...
@@ -66,11 +66,11 @@ these can be matched up with the invariant namespaces. *)
...
@@ -66,11 +66,11 @@ these can be matched up with the invariant namespaces. *)
(** The CMRAs we need, and the global ghost names we are using. *)
(** The CMRAs we need, and the global ghost names we are using. *)
Class
gen_heapGpreS
(
L
V
:
Type
)
(
Σ
:
gFunctors
)
`{
Countable
L
}
:=
{
Class
gen_heapGpreS
(
L
V
:
Type
)
(
Σ
:
gFunctors
)
`{
Countable
L
}
:=
{
gen_heapGpreS_heap
:
>
ghost_mapG
Σ
L
V
;
gen_heapGpreS_heap
:
ghost_mapG
Σ
L
V
;
gen_heapGpreS_meta
:
>
ghost_mapG
Σ
L
gname
;
gen_heapGpreS_meta
:
ghost_mapG
Σ
L
gname
;
gen_heapGpreS_meta_data
:
inG
Σ
(
reservation_mapR
(
agreeR
positiveO
));
gen_heapGpreS_meta_data
:
inG
Σ
(
reservation_mapR
(
agreeR
positiveO
));
}
.
}
.
Local
Existing
Instance
gen_heapGpreS_meta_data
.
Local
Existing
Instance
s
gen_heapGpreS_meta_data
gen_heapGpreS_heap
gen_heapGpreS_meta
.
Class
gen_heapGS
(
L
V
:
Type
)
(
Σ
:
gFunctors
)
`{
Countable
L
}
:=
GenHeapGS
{
Class
gen_heapGS
(
L
V
:
Type
)
(
Σ
:
gFunctors
)
`{
Countable
L
}
:=
GenHeapGS
{
gen_heap_inG
:>
gen_heapGpreS
L
V
Σ
;
gen_heap_inG
:>
gen_heapGpreS
L
V
Σ
;
...
...
This diff is collapsed.
Click to expand it.
iris/base_logic/lib/proph_map.v
+
2
−
1
View file @
dbe95c90
...
@@ -9,8 +9,9 @@ Definition proph_val_list (P V : Type) := list (P * V).
...
@@ -9,8 +9,9 @@ Definition proph_val_list (P V : Type) := list (P * V).
(** The CMRA we need. *)
(** The CMRA we need. *)
Class
proph_mapGpreS
(
P
V
:
Type
)
(
Σ
:
gFunctors
)
`{
Countable
P
}
:=
{
Class
proph_mapGpreS
(
P
V
:
Type
)
(
Σ
:
gFunctors
)
`{
Countable
P
}
:=
{
proph_map_GpreS_inG
:
>
ghost_mapG
Σ
P
(
list
V
)
proph_map_GpreS_inG
:
ghost_mapG
Σ
P
(
list
V
)
}
.
}
.
Local
Existing
Instances
proph_map_GpreS_inG
.
Class
proph_mapGS
(
P
V
:
Type
)
(
Σ
:
gFunctors
)
`{
Countable
P
}
:=
ProphMapGS
{
Class
proph_mapGS
(
P
V
:
Type
)
(
Σ
:
gFunctors
)
`{
Countable
P
}
:=
ProphMapGS
{
proph_map_inG
:>
proph_mapGpreS
P
V
Σ
;
proph_map_inG
:>
proph_mapGpreS
P
V
Σ
;
...
...
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