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
Simcha van Collem
Iris
Commits
cfdef486
Commit
cfdef486
authored
9 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Remove some unnecessary Implicit Types.
These are no longer needed, since fill is no longer a type class.
parent
228dff90
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
barrier/heap_lang.v
+1
-4
1 addition, 4 deletions
barrier/heap_lang.v
with
1 addition
and
4 deletions
barrier/heap_lang.v
+
1
−
4
View file @
cfdef486
...
@@ -108,9 +108,6 @@ Inductive ectx_item :=
...
@@ -108,9 +108,6 @@ Inductive ectx_item :=
Notation
ectx
:=
(
list
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
:=
Definition
fill_item
(
Ki
:
ectx_item
)
(
e
:
expr
)
:
expr
:=
match
Ki
with
match
Ki
with
|
AppLCtx
e2
=>
App
e
e2
|
AppLCtx
e2
=>
App
e
e2
...
@@ -195,7 +192,7 @@ Definition atomic (e: expr) :=
...
@@ -195,7 +192,7 @@ Definition atomic (e: expr) :=
We could potentially make this a generic construction. *)
We could potentially make this a generic construction. *)
Inductive
prim_step
Inductive
prim_step
(
e1
:
expr
)
(
σ1
:
state
)
(
e2
:
expr
)
(
σ2
:
state
)
(
ef
:
option
expr
)
:
Prop
:=
(
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'
→
e1
=
fill
K
e1'
→
e2
=
fill
K
e2'
→
head_step
e1'
σ1
e2'
σ2
ef
→
prim_step
e1
σ1
e2
σ2
ef
.
head_step
e1'
σ1
e2'
σ2
ef
→
prim_step
e1
σ1
e2
σ2
ef
.
...
...
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