Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joseph Tassarotti
iris-coq-public
Commits
8a675a00
Commit
8a675a00
authored
Aug 23, 2016
by
Robbert Krebbers
Browse files
Remove old tests about heap_lang reductions.
parent
aeff566c
Changes
1
Show whitespace changes
Inline
Side-by-side
tests/heap_lang.v
View file @
8a675a00
...
...
@@ -5,19 +5,6 @@ From iris.heap_lang Require Import adequacy.
From
iris
.
program_logic
Require
Import
ownership
.
From
iris
.
heap_lang
Require
Import
proofmode
notation
.
(
*
FIXME
or
remove
Section
LangTests
.
Definition
add
:
expr
:=
#
21
+
#
21.
Goal
∀
σ
,
head_step
add
σ
(#
42
)
σ
[].
Proof
.
intros
;
do_head_step
done
.
Qed
.
Definition
rec_app
:
expr
:=
(
rec
:
"f"
"x"
:=
"f"
"x"
)
#
0.
Goal
∀
σ
,
head_step
rec_app
σ
rec_app
σ
[].
Proof
.
intros
.
rewrite
/
rec_app
.
do_head_step
done
.
Qed
.
Definition
lam
:
expr
:=
λ
:
"x"
,
"x"
+
#
21.
Goal
∀
σ
,
head_step
(
lam
#
21
)
%
E
σ
add
σ
[].
Proof
.
intros
.
rewrite
/
lam
.
do_head_step
done
.
Qed
.
End
LangTests
.
*
)
Section
LiftingTests
.
Context
`
{
heapG
Σ
}
.
Implicit
Types
P
Q
:
iProp
Σ
.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment