Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Iris
Iris
Commits
cfdef486
Commit
cfdef486
authored
Feb 02, 2016
by
Robbert Krebbers
Browse files
Remove some unnecessary Implicit Types.
These are no longer needed, since fill is no longer a type class.
parent
228dff90
Changes
1
Hide whitespace changes
Inline
Side-by-side
barrier/heap_lang.v
View file @
cfdef486
...
...
@@ -108,9 +108,6 @@ Inductive ectx_item :=
Notation
ectx
:
=
(
list
ectx_item
).
Implicit
Types
Ki
:
ectx_item
.
Implicit
Types
K
:
ectx
.
Definition
fill_item
(
Ki
:
ectx_item
)
(
e
:
expr
)
:
expr
:
=
match
Ki
with
|
AppLCtx
e2
=>
App
e
e2
...
...
@@ -195,7 +192,7 @@ Definition atomic (e: expr) :=
We could potentially make this a generic construction. *)
Inductive
prim_step
(
e1
:
expr
)
(
σ
1
:
state
)
(
e2
:
expr
)
(
σ
2
:
state
)
(
ef
:
option
expr
)
:
Prop
:
=
Ectx_step
(
K
:
ectx
)
e1'
e2'
:
Ectx_step
K
e1'
e2'
:
e1
=
fill
K
e1'
→
e2
=
fill
K
e2'
→
head_step
e1'
σ
1 e2
'
σ
2
ef
→
prim_step
e1
σ
1 e2
σ
2
ef
.
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment