Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iris-coq
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
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
Dan Frumin
iris-coq
Commits
f7643c59
Commit
f7643c59
authored
9 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
generalize the löb-part of the wp_rec tactic
parent
c9e43f41
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
heap_lang/tests.v
+3
-3
3 additions, 3 deletions
heap_lang/tests.v
heap_lang/wp_tactics.v
+27
-20
27 additions, 20 deletions
heap_lang/wp_tactics.v
with
30 additions
and
23 deletions
heap_lang/tests.v
+
3
−
3
View file @
f7643c59
...
...
@@ -63,10 +63,10 @@ Section LiftingTests.
Proof
.
wp_lam
>
;
apply
later_mono
;
wp_op
=>
?
;
wp_if
.
-
wp_op
.
wp_op
.
ewp
apply
FindPred_spec
.
apply
and_intro
;
first
auto
with
I
omega
.
(
*
TODO
:
Can
we
use
the
wp
tactic
again
here
?
*
)
wp_focus
(
FindPred
_
_
).
rewrite
-
FindPred_spec
;
last
by
omega
.
wp_op
.
by
replace
(
n
-
1
)
with
(
-
(
-
n
+
2
-
1
))
by
omega
.
-
ew
p
apply
FindPred_spec
.
auto
with
I
omega
.
-
r
ew
rite
-
FindPred_spec
;
e
auto
with
omega
.
Qed
.
Lemma
Pred_user
E
:
...
...
This diff is collapsed.
Click to expand it.
heap_lang/wp_tactics.v
+
27
−
20
View file @
f7643c59
...
...
@@ -36,6 +36,31 @@ Ltac uRevert_all :=
apply
wand_elim_l
'
end
.
(
**
This
starts
on
a
goal
of
the
form
∀
...,
?
0.
..
→
?
1
⊑
?
2.
It
applies
l
ö
b
where
all
the
Coq
assumptions
have
been
turned
into
logical
assumptions
,
then
moves
all
the
Coq
assumptions
back
out
to
the
context
,
applies
[
tac
]
on
the
goal
(
now
of
the
form
_
⊑
_
),
and
then
reverts
the
Coq
assumption
so
that
we
end
up
with
the
same
shape
as
where
we
started
.
*
)
Ltac
uL
ö
b
tac
:=
uLock_goal
;
uRevert_all
;
(
*
We
now
have
a
goal
for
the
form
True
⊑
P
,
with
the
"original"
conclusion
being
locked
.
*
)
apply
l
ö
b_strong
;
etransitivity
;
first
(
apply
equiv_spec
;
symmetry
;
apply
(
left_id
_
_
_
);
reflexivity
);
(
*
Now
introduce
again
all
the
things
that
we
reverted
,
and
at
the
bottom
,
do
the
work
*
)
let
rec
go
:=
lazymatch
goal
with
|
|-
_
⊑
(
∀
_
,
_
)
=>
apply
forall_intro
;
let
H
:=
fresh
in
intro
H
;
go
;
revert
H
|
|-
_
⊑
(
■
_
→
_
)
=>
apply
impl_intro_l
,
const_elim_l
;
let
H
:=
fresh
in
intro
H
;
go
;
revert
H
|
|-
▷
?
R
⊑
(
?
L
-
★
locked
_
)
=>
apply
wand_intro_l
;
(
*
TODO
:
Do
sth
.
more
robust
than
rewriting
.
*
)
trans
(
▷
(
L
★
R
))
%
I
;
first
(
rewrite
later_sep
-
(
later_intro
L
);
reflexivity
);
unlock
;
tac
end
in
go
.
Ltac
wp_bind
K
:=
lazymatch
eval
hnf
in
K
with
|
[]
=>
idtac
...
...
@@ -55,23 +80,7 @@ Ltac wp_finish :=
end
in
simpl
;
revert_intros
go
.
Tactic
Notation
"wp_rec"
:=
uLock_goal
;
uRevert_all
;
(
*
We
now
have
a
goal
for
the
form
True
⊑
P
,
with
the
"original"
conclusion
being
locked
.
*
)
apply
l
ö
b_strong
;
etransitivity
;
first
(
apply
equiv_spec
;
symmetry
;
apply
(
left_id
_
_
_
));
[];
(
*
Now
introduce
again
all
the
things
that
we
reverted
,
and
at
the
bottom
,
do
the
work
*
)
let
rec
go
:=
lazymatch
goal
with
|
|-
_
⊑
(
∀
_
,
_
)
=>
apply
forall_intro
;
let
H
:=
fresh
in
intro
H
;
go
;
revert
H
|
|-
_
⊑
(
■
_
→
_
)
=>
apply
impl_intro_l
,
const_elim_l
;
let
H
:=
fresh
in
intro
H
;
go
;
revert
H
|
|-
▷
?
R
⊑
(
?
L
-
★
locked
_
)
=>
apply
wand_intro_l
;
(
*
TODO
:
Do
sth
.
more
robust
than
rewriting
.
*
)
trans
(
▷
(
L
★
R
))
%
I
;
first
(
rewrite
later_sep
-
(
later_intro
L
);
reflexivity
);
unlock
;
(
*
Find
the
redex
and
apply
wp_rec
*
)
uL
ö
b
ltac
:
((
*
Find
the
redex
and
apply
wp_rec
*
)
match
goal
with
|
|-
_
⊑
wp
?
E
?
e
?
Q
=>
reshape_expr
e
ltac
:
(
fun
K
e
'
=>
match
eval
cbv
in
e
'
with
...
...
@@ -79,9 +88,7 @@ Tactic Notation "wp_rec" :=
wp_bind
K
;
etrans
;
[
|
eapply
wp_rec
;
reflexivity
];
wp_finish
end
)
end
;
apply
later_mono
end
in
go
.
apply
later_mono
).
Tactic
Notation
"wp_lam"
">"
:=
match
goal
with
...
...
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