Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
examples
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
Iris
examples
Merge requests
!68
Make the spec for filter stronger
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Make the spec for filter stronger
amin/ci/filer-spec
into
master
Overview
1
Commits
1
Pipelines
1
Changes
1
Merged
Amin Timany
requested to merge
amin/ci/filer-spec
into
master
5 months ago
Overview
1
Commits
1
Pipelines
1
Changes
1
Expand
This tiny commit makes the spec for filter stronger.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
031d822e
1 commit,
5 months ago
1 file
+
13
−
14
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
theories/lecture_notes/lists.v
+
13
−
14
Options
@@ -385,31 +385,30 @@ Proof.
Qed
.
Lemma
filter_spec
(
hd
p
:
val
)
(
xs
:
list
val
)
(
P
:
val
->
bool
)
:
Lemma
filter_spec
(
hd
p
:
val
)
(
xs
:
list
val
)
(
R
:
val
->
bool
)
(
Q
:
val
→
iProp
Σ
)
:
{{{
is_list
hd
xs
∗
(
∀
x
:
val
,
{{{
True
}}}
{{{
Q
x
}}}
p
x
{{{
r
,
RET
r
;
⌜
r
=
#
(
P
x
)
⌝
}}})
{{{
r
,
RET
r
;
⌜
r
=
#
(
R
x
)
⌝
}}})
∗
[
∗
list
]
x
∈
xs
,
Q
x
}}}
filter
p
hd
{{{
v
,
RET
v
;
is_list
hd
xs
∗
is_list
v
(
List
.
filter
P
xs
)
∗
is_list
v
(
List
.
filter
R
xs
)
}}}
.
Proof
.
iIntros
(
ϕ
)
"
[
H_isList #H_p
]
H_ϕ"
.
wp_rec
.
wp_pures
.
iApply
(
foldr_spec_PI
(
fun
x
=>
True
)
%
I
(
fun
xs'
acc
=>
is_list
acc
(
List
.
filter
P
xs'
))
%
I
with
"[$H_isList] [H_ϕ]"
)
.
-
iSplit
L
.
+
iIntros
(
x
a'
?)
"!# %ϕ'"
.
iIntros
"[
_
H_isList] H_ϕ'"
.
repeat
(
wp_pure
_)
.
wp_bind
(
p
x
)
.
iApply
"H_p"
;
first
done
.
iNext
.
iIntros
(
r
)
"H"
.
iSimplifyEq
.
destruct
(
P
x
);
wp_if
.
iIntros
(
ϕ
)
"
(
H_isList
&
#H_p
& HQs)
H_ϕ"
.
wp_rec
.
wp_pures
.
iApply
(
foldr_spec_PI
Q
(
fun
xs'
acc
=>
is_list
acc
(
List
.
filter
R
xs'
))
%
I
with
"[$H_isList
HQs
] [H_ϕ]"
)
.
-
iSplit
R
.
+
iIntros
(
x
a'
?)
"!# %ϕ'"
.
iIntros
"[
HQ
H_isList] H_ϕ'"
.
repeat
(
wp_pure
_)
.
wp_bind
(
p
x
)
.
iApply
(
"H_p"
with
"[$HQ]"
)
.
iNext
.
iIntros
(
r
)
"H"
.
iSimplifyEq
.
destruct
(
R
x
);
wp_if
.
*
wp_rec
.
wp_pures
.
wp_alloc
l
.
wp_pures
.
iApply
"H_ϕ'"
.
iExists
l
,
a'
.
by
iFrame
.
*
by
iApply
"H_ϕ'"
.
+
iSplit
;
last
done
.
rewrite
big_sepL_forall
.
eauto
.
+
by
iSplit
.
-
iNext
.
iApply
"H_ϕ"
.
Qed
.
Loading