Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iris
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
Tej Chajed
iris
Commits
e9fec17a
Commit
e9fec17a
authored
9 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
import ssreflect and make a little use of it
parent
77c885d8
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
channel/heap_lang.v
+16
-12
16 additions, 12 deletions
channel/heap_lang.v
with
16 additions
and
12 deletions
channel/heap_lang.v
+
16
−
12
View file @
e9fec17a
Require
Import
mathcomp
.
ssreflect
.
ssreflect
.
Require
Import
Autosubst
.
Autosubst
.
Require
Import
Autosubst
.
Autosubst
.
Require
Import
prelude
.
option
.
Require
Import
prelude
.
option
.
Set
Bullet
Behavior
"Strict Subproofs"
.
Inductive
expr
:=
Inductive
expr
:=
|
Var
(
x
:
var
)
|
Var
(
x
:
var
)
|
Lit
(
T
:
Type
)
(
t
:
T
)
(* arbitrary Coq values become literals *)
|
Lit
(
T
:
Type
)
(
t
:
T
)
(* arbitrary Coq values become literals *)
...
@@ -53,7 +56,7 @@ Fixpoint e2v (e : expr) : option value :=
...
@@ -53,7 +56,7 @@ Fixpoint e2v (e : expr) : option value :=
Lemma
v2v
v
:
Lemma
v2v
v
:
e2v
(
v2e
v
)
=
Some
v
.
e2v
(
v2e
v
)
=
Some
v
.
Proof
.
Proof
.
induction
v
;
simpl
;
rewrite
?IHv
,
?IHv1
;
simpl
;
rewrite
?IHv2
;
reflexivity
.
induction
v
;
simpl
;
rewrite
?IHv
?IHv1
/=
?IHv2
;
reflexivity
.
Qed
.
Qed
.
Lemma
e2e
e
v
:
Lemma
e2e
e
v
:
...
@@ -64,11 +67,11 @@ Proof.
...
@@ -64,11 +67,11 @@ Proof.
-
intros
Heq
.
injection
Heq
.
clear
Heq
.
intros
Heq
.
subst
.
reflexivity
.
-
intros
Heq
.
injection
Heq
.
clear
Heq
.
intros
Heq
.
subst
.
reflexivity
.
-
destruct
(
e2v
e1
);
simpl
;
[|
discriminate
]
.
-
destruct
(
e2v
e1
);
simpl
;
[|
discriminate
]
.
destruct
(
e2v
e2
);
simpl
;
[|
discriminate
]
.
destruct
(
e2v
e2
);
simpl
;
[|
discriminate
]
.
intros
Heq
.
injection
Heq
.
clear
Heq
.
intros
Heq
.
subst
.
simpl
.
eauto
using
f_equal2
.
case
=>
<-
.
simpl
.
eauto
using
f_equal2
.
-
destruct
(
e2v
e
);
simpl
;
[|
discriminate
]
.
-
destruct
(
e2v
e
);
simpl
;
[|
discriminate
]
.
intros
Heq
.
injection
Heq
.
clear
Heq
.
intros
Heq
.
subst
.
simpl
.
eauto
using
f_equal
.
case
=>
<-
.
simpl
.
eauto
using
f_equal
.
-
destruct
(
e2v
e
);
simpl
;
[|
discriminate
]
.
-
destruct
(
e2v
e
);
simpl
;
[|
discriminate
]
.
intros
Heq
.
injection
Heq
.
clear
Heq
.
intros
Heq
.
subst
.
simpl
.
eauto
using
f_equal
.
case
=>
<-
.
simpl
.
eauto
using
f_equal
.
Qed
.
Qed
.
Inductive
ectx
:=
Inductive
ectx
:=
...
@@ -120,20 +123,20 @@ Qed.
...
@@ -120,20 +123,20 @@ Qed.
Lemma
fill_comp
K1
K2
e
:
Lemma
fill_comp
K1
K2
e
:
fill
K1
(
fill
K2
e
)
=
fill
(
comp_ctx
K1
K2
)
e
.
fill
K1
(
fill
K2
e
)
=
fill
(
comp_ctx
K1
K2
)
e
.
Proof
.
Proof
.
revert
K2
e
;
induction
K1
;
intros
K2
e
;
simpl
;
rewrite
?IHK1
,
?IHK2
;
reflexivity
.
revert
K2
e
;
induction
K1
=>
K2
e
/=
;
rewrite
?IHK1
?IHK2
;
reflexivity
.
Qed
.
Qed
.
Lemma
fill_inj_r
K
e1
e2
:
Lemma
fill_inj_r
K
e1
e2
:
fill
K
e1
=
fill
K
e2
->
e1
=
e2
.
fill
K
e1
=
fill
K
e2
->
e1
=
e2
.
Proof
.
Proof
.
revert
e1
e2
;
induction
K
;
intros
el
er
;
simpl
;
revert
e1
e2
;
induction
K
=>
el
er
/=
;
intros
Heq
;
try
apply
IHK
;
inversion
Heq
;
reflexivity
.
(
move
=>
<-
;
reflexivity
)
||
(
case
=>
/
IHK
<-
;
reflexivity
)
.
Qed
.
Qed
.
Lemma
fill_value
K
e
v'
:
Lemma
fill_value
K
e
v'
:
e2v
(
fill
K
e
)
=
Some
v'
->
exists
v
,
e2v
e
=
Some
v
.
e2v
(
fill
K
e
)
=
Some
v'
->
exists
v
,
e2v
e
=
Some
v
.
Proof
.
Proof
.
revert
v'
;
induction
K
;
intros
v'
;
simpl
;
try
discriminate
;
revert
v'
;
induction
K
=>
v'
/=
;
try
discriminate
;
try
destruct
(
e2v
(
fill
K
e
));
rewrite
?v2v
;
eauto
.
try
destruct
(
e2v
(
fill
K
e
));
rewrite
?v2v
;
eauto
.
Qed
.
Qed
.
...
@@ -293,7 +296,7 @@ Proof.
...
@@ -293,7 +296,7 @@ Proof.
intros
Heq
.
apply
e2e
in
Heq
.
subst
.
eauto
using
stuck_find_redex
,
values_stuck
.
intros
Heq
.
apply
e2e
in
Heq
.
subst
.
eauto
using
stuck_find_redex
,
values_stuck
.
Qed
.
Qed
.
Lemma
reducible_find_redex
e
K'
e'
:
Lemma
reducible_find_redex
{
e
K'
e'
}
:
e
=
fill
K'
e'
->
reducible
e'
->
find_redex
e
=
Some
(
K'
,
e'
)
.
e
=
fill
K'
e'
->
reducible
e'
->
find_redex
e
=
Some
(
K'
,
e'
)
.
Proof
.
Proof
.
revert
e
;
induction
K'
;
intros
e
Hfill
Hred
;
subst
e
;
simpl
.
revert
e
;
induction
K'
;
intros
e
Hfill
Hred
;
subst
e
;
simpl
.
...
@@ -301,9 +304,9 @@ Proof.
...
@@ -301,9 +304,9 @@ Proof.
destruct
Hred
as
(
σ'
&
e''
&
σ''
&
ef
&
Hstep
)
.
destruct
Hstep
;
simpl
.
destruct
Hred
as
(
σ'
&
e''
&
σ''
&
ef
&
Hstep
)
.
destruct
Hstep
;
simpl
.
+
erewrite
find_redex_val
by
eassumption
.
by
rewrite
Hv2
.
+
erewrite
find_redex_val
by
eassumption
.
by
rewrite
Hv2
.
+
erewrite
find_redex_val
by
eassumption
.
erewrite
find_redex_val
by
eassumption
.
+
erewrite
find_redex_val
by
eassumption
.
erewrite
find_redex_val
by
eassumption
.
by
rewrite
Hv1
,
Hv2
.
by
rewrite
Hv1
Hv2
.
+
erewrite
find_redex_val
by
eassumption
.
erewrite
find_redex_val
by
eassumption
.
+
erewrite
find_redex_val
by
eassumption
.
erewrite
find_redex_val
by
eassumption
.
by
rewrite
Hv1
,
Hv2
.
by
rewrite
Hv1
Hv2
.
+
erewrite
find_redex_val
by
eassumption
.
by
rewrite
Hv0
.
+
erewrite
find_redex_val
by
eassumption
.
by
rewrite
Hv0
.
+
erewrite
find_redex_val
by
eassumption
.
by
rewrite
Hv0
.
+
erewrite
find_redex_val
by
eassumption
.
by
rewrite
Hv0
.
-
by
erewrite
IHK'
.
-
by
erewrite
IHK'
.
...
@@ -336,5 +339,6 @@ Lemma step_by_value K K' e e' :
...
@@ -336,5 +339,6 @@ Lemma step_by_value K K' e e' :
e2v
e
=
None
->
e2v
e
=
None
->
exists
K''
,
K'
=
comp_ctx
K
K''
.
exists
K''
,
K'
=
comp_ctx
K
K''
.
Proof
.
Proof
.
(* TODO *)
intros
Hfill
Hred
Hnval
.
assert
(
Hfind
:=
reducible_find_redex
Hfill
Hred
)
.
Abort
.
Abort
.
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