Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Iris
Fairis
Commits
531d88c1
Commit
531d88c1
authored
Feb 02, 2016
by
Ralf Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
give the fold_left version of fill
parent
4aeb0a86
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
barrier/heap_lang.v
barrier/heap_lang.v
+3
-1
No files found.
barrier/heap_lang.v
View file @
531d88c1
...
...
@@ -136,7 +136,9 @@ Definition ectx_item_fill (Ki : ectx_item) (e : expr) : expr :=
end
.
Fixpoint
fill
K
e
:=
(
*
FIXME
RJ
:
This
really
is
fold_left
,
but
if
I
use
that
all
automation
breaks
.
*
)
(
*
FIXME
RJ
:
This
really
is
fold_left
,
but
if
I
use
that
all
automation
breaks
:
fold_left
(
fun
e
Ki
=>
ectx_item_fill
Ki
e
).
Or
maybe
we
even
have
a
combinator
somewhere
to
swap
the
arguments
?
*
)
match
K
with
[]
=>
e
|
Ki
::
K
=>
ectx_item_fill
Ki
(
fill
K
e
)
end
.
(
**
The
stepping
relation
*
)
...
...
Write
Preview
Markdown
is supported
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