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
Simcha van Collem
Iris
Commits
c78daf89
Commit
c78daf89
authored
9 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
try to rely more on eauto - and fail and leave some FIXMEs
parent
ef3214e0
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
program_logic/viewshifts.v
+6
-1
6 additions, 1 deletion
program_logic/viewshifts.v
with
6 additions
and
1 deletion
program_logic/viewshifts.v
+
6
−
1
View file @
c78daf89
...
@@ -86,13 +86,18 @@ Qed.
...
@@ -86,13 +86,18 @@ Qed.
Lemma
vs_mask_frame'
E
Ef
P
Q
:
Ef
∩
E
=
∅
→
(
P
=
{
E
}=>
Q
)
⊑
(
P
=
{
E
∪
Ef
}=>
Q
)
.
Lemma
vs_mask_frame'
E
Ef
P
Q
:
Ef
∩
E
=
∅
→
(
P
=
{
E
}=>
Q
)
⊑
(
P
=
{
E
∪
Ef
}=>
Q
)
.
Proof
.
intros
;
apply
vs_mask_frame
;
solve_elem_of
.
Qed
.
Proof
.
intros
;
apply
vs_mask_frame
;
solve_elem_of
.
Qed
.
(* FIXME: This is needed to make eauto solve [inv N R ⊑ inv N ?c]. *)
Local
Hint
Extern
100
(_
⊑
_)
=>
reflexivity
.
Lemma
vs_open_close
N
E
P
Q
R
:
Lemma
vs_open_close
N
E
P
Q
R
:
nclose
N
⊆
E
→
nclose
N
⊆
E
→
(
inv
N
R
★
(
▷
R
★
P
=
{
E
∖
nclose
N
}=>
▷
R
★
Q
))
⊑
(
P
=
{
E
}=>
Q
)
.
(
inv
N
R
★
(
▷
R
★
P
=
{
E
∖
nclose
N
}=>
▷
R
★
Q
))
⊑
(
P
=
{
E
}=>
Q
)
.
Proof
.
Proof
.
intros
;
apply
(
always_intro
_
_),
impl_intro_l
.
intros
;
apply
(
always_intro
_
_),
impl_intro_l
.
rewrite
always_and_sep_r
assoc
[(
P
★
_)
%
I
]
comm
-
assoc
.
rewrite
always_and_sep_r
assoc
[(
P
★
_)
%
I
]
comm
-
assoc
.
apply
:
(
pvs_open_close
E
N
);
[
by
eauto
using
sep_elim_l
..|]
.
(* FIXME sep_elim_l' is already added to the DB in upred.v. Why do
I have to mention it here again? *)
apply
:
(
pvs_open_close
E
N
);
[
by
eauto
using
sep_elim_l'
..|]
.
rewrite
sep_elim_r
.
apply
wand_intro_l
.
rewrite
sep_elim_r
.
apply
wand_intro_l
.
(* Oh wow, this is annyoing... *)
(* Oh wow, this is annyoing... *)
rewrite
assoc
-
always_and_sep_r'
.
rewrite
assoc
-
always_and_sep_r'
.
...
...
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