Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Jonas Kastberg
iris
Commits
d4b5cd5a
Commit
d4b5cd5a
authored
Sep 12, 2018
by
Robbert Krebbers
Browse files
Fix confusing name of bound variable.
parent
c25f4d65
Changes
1
Hide whitespace changes
Inline
Side-by-side
theories/proofmode/environments.v
View file @
d4b5cd5a
...
...
@@ -277,8 +277,8 @@ Fixpoint envs_lookup_delete_list {PROP} (remove_persistent : bool)
|
[]
=>
Some
(
true
,
[],
Δ
)
|
j
::
js
=>
''
(
p
,
P
,
Δ
'
)
←
envs_lookup_delete
remove_persistent
j
Δ
;
''
(
q
,
H
s
,
Δ
''
)
←
envs_lookup_delete_list
remove_persistent
js
Δ
'
;
Some
((
p
:
bool
)
&&
q
,
P
::
H
s
,
Δ
''
)
''
(
q
,
P
s
,
Δ
''
)
←
envs_lookup_delete_list
remove_persistent
js
Δ
'
;
Some
((
p
:
bool
)
&&
q
,
P
::
P
s
,
Δ
''
)
end
.
Definition
envs_snoc
{
PROP
}
(
Δ
:
envs
PROP
)
...
...
Write
Preview
Supports
Markdown
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