Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
Iris
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
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
Abhishek Anand
Iris
Commits
cea60198
Commit
cea60198
authored
7 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
Coq future-compat: use qualified name for
parent
4b77018c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theories/proofmode/coq_tactics.v
+2
-2
2 additions, 2 deletions
theories/proofmode/coq_tactics.v
with
2 additions
and
2 deletions
theories/proofmode/coq_tactics.v
+
2
−
2
View file @
cea60198
...
@@ -92,7 +92,7 @@ Definition envs_simple_replace {M} (i : ident) (p : bool) (Γ : env (uPred M))
...
@@ -92,7 +92,7 @@ Definition envs_simple_replace {M} (i : ident) (p : bool) (Γ : env (uPred M))
Definition
envs_replace
{
M
}
(
i
:
ident
)
(
p
q
:
bool
)
(
Γ
:
env
(
uPred
M
))
Definition
envs_replace
{
M
}
(
i
:
ident
)
(
p
q
:
bool
)
(
Γ
:
env
(
uPred
M
))
(
Δ
:
envs
M
)
:
option
(
envs
M
)
:=
(
Δ
:
envs
M
)
:
option
(
envs
M
)
:=
if
eqb
p
q
then
envs_simple_replace
i
p
Γ
Δ
if
Bool
.
eqb
p
q
then
envs_simple_replace
i
p
Γ
Δ
else
envs_app
q
Γ
(
envs_delete
i
p
Δ
)
.
else
envs_app
q
Γ
(
envs_delete
i
p
Δ
)
.
Definition
env_spatial_is_nil
{
M
}
(
Δ
:
envs
M
)
:=
Definition
env_spatial_is_nil
{
M
}
(
Δ
:
envs
M
)
:=
...
@@ -285,7 +285,7 @@ Lemma envs_replace_sound' Δ Δ' i p q Γ :
...
@@ -285,7 +285,7 @@ Lemma envs_replace_sound' Δ Δ' i p q Γ :
envs_replace
i
p
q
Γ
Δ
=
Some
Δ'
→
envs_replace
i
p
q
Γ
Δ
=
Some
Δ'
→
of_envs
(
envs_delete
i
p
Δ
)
⊢
□
?q
[
∗
]
Γ
-∗
of_envs
Δ'
.
of_envs
(
envs_delete
i
p
Δ
)
⊢
□
?q
[
∗
]
Γ
-∗
of_envs
Δ'
.
Proof
.
Proof
.
rewrite
/
envs_replace
;
destruct
(
eqb
_
_)
eqn
:
Hpq
.
rewrite
/
envs_replace
;
destruct
(
Bool
.
eqb
_
_)
eqn
:
Hpq
.
-
apply
eqb_prop
in
Hpq
as
->
.
apply
envs_simple_replace_sound'
.
-
apply
eqb_prop
in
Hpq
as
->
.
apply
envs_simple_replace_sound'
.
-
apply
envs_app_sound
.
-
apply
envs_app_sound
.
Qed
.
Qed
.
...
...
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