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
Yixuan Chen
Iris
Commits
7f179d5b
Commit
7f179d5b
authored
9 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
get rid of a few %L we do not need any more
parent
c6490e75
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
heap_lang/tests.v
+3
-4
3 additions, 4 deletions
heap_lang/tests.v
with
3 additions
and
4 deletions
heap_lang/tests.v
+
3
−
4
View file @
7f179d5b
...
@@ -7,12 +7,11 @@ Module LangTests.
...
@@ -7,12 +7,11 @@ Module LangTests.
Definition
add
:=
(
21
+
21
)
%
L
.
Definition
add
:=
(
21
+
21
)
%
L
.
Goal
∀
σ
,
prim_step
add
σ
42
σ
None
.
Goal
∀
σ
,
prim_step
add
σ
42
σ
None
.
Proof
.
intros
;
do_step
done
.
Qed
.
Proof
.
intros
;
do_step
done
.
Qed
.
(* FIXME RJ why do I need the %L ? *)
Definition
rec
:
expr
:=
rec
::
#
0
#
1
.
(* fix f x => f x *)
Definition
rec
:
expr
:=
(
rec
::
#
0
#
1
)
%
L
.
(* fix f x => f x *)
Definition
rec_app
:
expr
:=
rec
0
.
Definition
rec_app
:
expr
:=
rec
0
.
Goal
∀
σ
,
prim_step
rec_app
σ
rec_app
σ
None
.
Goal
∀
σ
,
prim_step
rec_app
σ
rec_app
σ
None
.
Proof
.
Set
Printing
All
.
intros
;
do_step
done
.
Qed
.
Proof
.
Set
Printing
All
.
intros
;
do_step
done
.
Qed
.
Definition
lam
:
expr
:=
(
λ
:
#
0
+
21
)
%
L
.
Definition
lam
:
expr
:=
λ
:
#
0
+
21
.
Goal
∀
σ
,
prim_step
(
App
lam
(
LitNat
21
))
σ
add
σ
None
.
Goal
∀
σ
,
prim_step
(
App
lam
(
LitNat
21
))
σ
add
σ
None
.
Proof
.
intros
;
do_step
done
.
Qed
.
Proof
.
intros
;
do_step
done
.
Qed
.
End
LangTests
.
End
LangTests
.
...
@@ -23,7 +22,7 @@ Module LiftingTests.
...
@@ -23,7 +22,7 @@ Module LiftingTests.
Implicit
Types
Q
:
val
→
iProp
heap_lang
Σ
.
Implicit
Types
Q
:
val
→
iProp
heap_lang
Σ
.
(* FIXME: Fix levels so that we do not need the parenthesis here. *)
(* FIXME: Fix levels so that we do not need the parenthesis here. *)
Definition
e
:
expr
:=
(
let
:
ref
1
in
#
0
<-
!#
0
+
1
;
!#
0
)
%
L
.
Definition
e
:
expr
:=
let
:
ref
1
in
#
0
<-
!#
0
+
1
;
!#
0
.
Goal
∀
σ
E
,
(
ownP
σ
:
iProp
heap_lang
Σ
)
⊑
(
wp
E
e
(
λ
v
,
■
(
v
=
2
)))
.
Goal
∀
σ
E
,
(
ownP
σ
:
iProp
heap_lang
Σ
)
⊑
(
wp
E
e
(
λ
v
,
■
(
v
=
2
)))
.
Proof
.
Proof
.
move
=>
σ
E
.
rewrite
/
e
.
move
=>
σ
E
.
rewrite
/
e
.
...
...
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