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
fe62f378
Commit
fe62f378
authored
5 years ago
by
Michael Sammler
Browse files
Options
Downloads
Patches
Plain Diff
added lemmas for list cmra
parent
666af42e
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theories/algebra/list.v
+14
-0
14 additions, 0 deletions
theories/algebra/list.v
with
14 additions
and
0 deletions
theories/algebra/list.v
+
14
−
0
View file @
fe62f378
...
...
@@ -359,6 +359,9 @@ Section properties.
Global
Instance
list_singleton_core_id
i
(
x
:
A
)
:
CoreId
x
→
CoreId
{[
i
:=
x
]}
.
Proof
.
by
rewrite
!
core_id_total
list_core_singletonM
=>
->
.
Qed
.
Lemma
list_singleton_snoc
l
x
:
{[
length
l
:=
x
]}
⋅
l
≡
l
++
[
x
]
.
Proof
.
elim
:
l
=>
//=
??
<-.
by
rewrite
left_id
.
Qed
.
(* Update *)
Lemma
list_singleton_updateP
(
P
:
A
→
Prop
)
(
Q
:
list
A
→
Prop
)
x
:
...
...
@@ -446,6 +449,17 @@ Section properties.
x ~l~> y @ ml ≫= (!! i) → {[ i := x ]} ~l~> {[ i := y ]} @ ml.
Proof. intros; apply list_middle_local_update. by rewrite replicate_length. Qed.
*)
Lemma
list_alloc_singleton_local_update
x
l
:
✓
x
→
(
l
,
ε
)
~l
~>
(
l
++
[
x
],
{[
length
l
:=
x
]})
.
Proof
.
move
=>
?
.
have
->
:
({[
length
l
:=
x
]}
≡
{[
length
l
:=
x
]}
⋅
ε
)
by
rewrite
right_id
.
rewrite
-
list_singleton_snoc
.
apply
op_local_update
=>
??
.
rewrite
list_singleton_snoc
app_validN
cons_validN
.
split_and
?
=>
//
;
[|
constructor
]
.
by
apply
cmra_valid_validN
.
Qed
.
End
properties
.
(** Functor *)
...
...
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