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
Gaëtan Gilbert
Iris
Commits
d2147936
Commit
d2147936
authored
6 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
backport heap_lang notation fix from gen_proofmode
parent
1d29427d
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
theories/heap_lang/lang.v
+8
-7
8 additions, 7 deletions
theories/heap_lang/lang.v
with
8 additions
and
7 deletions
theories/heap_lang/lang.v
+
8
−
7
View file @
d2147936
...
...
@@ -531,11 +531,12 @@ Canonical Structure heap_lang := LanguageOfEctx heap_ectx_lang.
Export
heap_lang
.
(** Define some derived forms *)
Notation
Lam
x
e
:=
(
Rec
BAnon
x
e
)
.
Notation
Let
x
e1
e2
:=
(
App
(
Lam
x
e2
)
e1
)
.
Notation
Seq
e1
e2
:=
(
Let
BAnon
e1
e2
)
.
Notation
LamV
x
e
:=
(
RecV
BAnon
x
e
)
.
Notation
LetCtx
x
e2
:=
(
AppRCtx
(
LamV
x
e2
))
.
Notation
SeqCtx
e2
:=
(
LetCtx
BAnon
e2
)
.
Notation
Lam
x
e
:=
(
Rec
BAnon
x
e
)
(
only
parsing
)
.
Notation
Let
x
e1
e2
:=
(
App
(
Lam
x
e2
)
e1
)
(
only
parsing
)
.
Notation
Seq
e1
e2
:=
(
Let
BAnon
e1
e2
)
(
only
parsing
)
.
Notation
LamV
x
e
:=
(
RecV
BAnon
x
e
)
(
only
parsing
)
.
Notation
LetCtx
x
e2
:=
(
AppRCtx
(
LamV
x
e2
))
(
only
parsing
)
.
Notation
SeqCtx
e2
:=
(
LetCtx
BAnon
e2
)
(
only
parsing
)
.
Notation
Match
e0
x1
e1
x2
e2
:=
(
Case
e0
(
Lam
x1
e1
)
(
Lam
x2
e2
))
(
only
parsing
)
.
Notation
Skip
:=
(
Seq
(
Lit
LitUnit
)
(
Lit
LitUnit
))
.
Notation
Match
e0
x1
e1
x2
e2
:=
(
Case
e0
(
Lam
x1
e1
)
(
Lam
x2
e2
))
.
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