Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
stdpp
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
Thibaut Pérami
stdpp
Commits
653cb9db
Commit
653cb9db
authored
4 years ago
by
Ralf Jung
Committed by
Robbert Krebbers
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
add map_filter_insert_not_delete
by Tej
parent
5bdd73dd
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
theories/fin_maps.v
+45
-0
45 additions, 0 deletions
theories/fin_maps.v
theories/list.v
+11
-0
11 additions, 0 deletions
theories/list.v
with
56 additions
and
0 deletions
theories/fin_maps.v
+
45
−
0
View file @
653cb9db
...
@@ -1132,6 +1132,17 @@ Section map_filter.
...
@@ -1132,6 +1132,17 @@ Section map_filter.
+
rewrite
Eq
,
Hm
,
lookup_insert
.
naive_solver
.
+
rewrite
Eq
,
Hm
,
lookup_insert
.
naive_solver
.
+
by
rewrite
lookup_insert_ne
.
+
by
rewrite
lookup_insert_ne
.
Qed
.
Qed
.
Lemma
map_filter_lookup_Some_11
m
i
x
:
filter
P
m
!!
i
=
Some
x
→
m
!!
i
=
Some
x
.
Proof
.
apply
map_filter_lookup_Some
.
Qed
.
Lemma
map_filter_lookup_Some_12
m
i
x
:
filter
P
m
!!
i
=
Some
x
→
P
(
i
,
x
)
.
Proof
.
apply
map_filter_lookup_Some
.
Qed
.
Lemma
map_filter_lookup_Some_2
m
i
x
:
m
!!
i
=
Some
x
→
P
(
i
,
x
)
→
filter
P
m
!!
i
=
Some
x
.
Proof
.
intros
.
by
apply
map_filter_lookup_Some
.
Qed
.
Lemma
map_filter_lookup_None
m
i
:
Lemma
map_filter_lookup_None
m
i
:
filter
P
m
!!
i
=
None
↔
m
!!
i
=
None
∨
∀
x
,
m
!!
i
=
Some
x
→
¬
P
(
i
,
x
)
.
filter
P
m
!!
i
=
None
↔
m
!!
i
=
None
∨
∀
x
,
m
!!
i
=
Some
x
→
¬
P
(
i
,
x
)
.
...
@@ -1139,6 +1150,14 @@ Section map_filter.
...
@@ -1139,6 +1150,14 @@ Section map_filter.
rewrite
eq_None_not_Some
.
unfold
is_Some
.
rewrite
eq_None_not_Some
.
unfold
is_Some
.
setoid_rewrite
map_filter_lookup_Some
.
naive_solver
.
setoid_rewrite
map_filter_lookup_Some
.
naive_solver
.
Qed
.
Qed
.
Lemma
map_filter_lookup_None_1
m
i
:
filter
P
m
!!
i
=
None
→
m
!!
i
=
None
∨
∀
x
,
m
!!
i
=
Some
x
→
¬
P
(
i
,
x
)
.
Proof
.
apply
map_filter_lookup_None
.
Qed
.
Lemma
map_filter_lookup_None_2
m
i
:
m
!!
i
=
None
∨
(
∀
x
:
A
,
m
!!
i
=
Some
x
→
¬
P
(
i
,
x
))
→
filter
P
m
!!
i
=
None
.
Proof
.
apply
map_filter_lookup_None
.
Qed
.
Lemma
map_filter_lookup_eq
m1
m2
:
Lemma
map_filter_lookup_eq
m1
m2
:
(
∀
k
x
,
P
(
k
,
x
)
→
m1
!!
k
=
Some
x
↔
m2
!!
k
=
Some
x
)
→
(
∀
k
x
,
P
(
k
,
x
)
→
m1
!!
k
=
Some
x
↔
m2
!!
k
=
Some
x
)
→
...
@@ -1170,6 +1189,14 @@ Section map_filter.
...
@@ -1170,6 +1189,14 @@ Section map_filter.
(
∀
y
,
¬
P
(
i
,
y
))
→
filter
P
(
<
[
i
:=
x
]
>
m
)
=
filter
P
m
.
(
∀
y
,
¬
P
(
i
,
y
))
→
filter
P
(
<
[
i
:=
x
]
>
m
)
=
filter
P
m
.
Proof
.
intros
HP
.
by
apply
map_filter_insert_not'
.
Qed
.
Proof
.
intros
HP
.
by
apply
map_filter_insert_not'
.
Qed
.
Lemma
map_filter_insert_not_delete
m
i
x
:
¬
P
(
i
,
x
)
→
filter
P
(
<
[
i
:=
x
]
>
m
)
=
filter
P
(
delete
i
m
)
.
Proof
.
intros
.
rewrite
<-
insert_delete
by
done
.
rewrite
map_filter_insert_not'
;
[
done
..|]
.
rewrite
lookup_delete
;
done
.
Qed
.
Lemma
map_filter_delete
m
i
:
filter
P
(
delete
i
m
)
=
delete
i
(
filter
P
m
)
.
Lemma
map_filter_delete
m
i
:
filter
P
(
delete
i
m
)
=
delete
i
(
filter
P
m
)
.
Proof
.
Proof
.
apply
map_eq
.
intros
j
.
apply
option_eq
;
intros
y
.
apply
map_eq
.
intros
j
.
apply
option_eq
;
intros
y
.
...
@@ -1200,6 +1227,24 @@ Section map_filter.
...
@@ -1200,6 +1227,24 @@ Section map_filter.
Qed
.
Qed
.
End
map_filter
.
End
map_filter
.
Lemma
map_filter_fmap
{
A
A2
}
(
P
:
K
*
A
→
Prop
)
`{
!∀
x
,
Decision
(
P
x
)}
(
f
:
A2
→
A
)
(
m
:
M
A2
)
:
filter
P
(
f
<$>
m
)
=
f
<$>
filter
(
λ
'
(
k
,
v
),
P
(
k
,
(
f
v
)))
m
.
Proof
.
apply
map_eq
.
intros
i
.
apply
option_eq
;
intros
x
.
repeat
(
rewrite
lookup_fmap
,
fmap_Some
||
setoid_rewrite
map_filter_lookup_Some
)
.
naive_solver
.
Qed
.
Lemma
map_filter_iff
{
A
}
(
P1
P2
:
K
*
A
→
Prop
)
`{
!∀
x
,
Decision
(
P1
x
),
!∀
x
,
Decision
(
P2
x
)}
(
m
:
M
A
)
:
(
∀
x
,
P1
x
↔
P2
x
)
→
filter
P1
m
=
filter
P2
m
.
Proof
.
intros
HPiff
.
rewrite
!
map_filter_alt
.
f_equal
.
apply
list_filter_iff
.
done
.
Qed
.
(** ** Properties of the [map_Forall] predicate *)
(** ** Properties of the [map_Forall] predicate *)
Section
map_Forall
.
Section
map_Forall
.
Context
{
A
}
(
P
:
K
→
A
→
Prop
)
.
Context
{
A
}
(
P
:
K
→
A
→
Prop
)
.
...
...
This diff is collapsed.
Click to expand it.
theories/list.v
+
11
−
0
View file @
653cb9db
...
@@ -1791,6 +1791,17 @@ Section filter.
...
@@ -1791,6 +1791,17 @@ Section filter.
Qed
.
Qed
.
End
filter
.
End
filter
.
Lemma
list_filter_iff
(
P1
P2
:
A
→
Prop
)
`{
!∀
x
,
Decision
(
P1
x
),
!∀
x
,
Decision
(
P2
x
)}
(
l
:
list
A
)
:
(
∀
x
,
P1
x
↔
P2
x
)
→
filter
P1
l
=
filter
P2
l
.
Proof
.
intros
HPiff
.
induction
l
as
[|
a
l
IH
];
[
done
|]
.
destruct
(
decide
(
P1
a
))
.
-
rewrite
!
filter_cons_True
by
naive_solver
.
by
rewrite
IH
.
-
rewrite
!
filter_cons_False
by
naive_solver
.
by
rewrite
IH
.
Qed
.
(** ** Properties of the [prefix] and [suffix] predicates *)
(** ** Properties of the [prefix] and [suffix] predicates *)
Global
Instance
:
PreOrder
(
@
prefix
A
)
.
Global
Instance
:
PreOrder
(
@
prefix
A
)
.
Proof
.
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