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
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
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
Iris
Iris
Commits
e2abd6c4
There was a problem fetching the pipeline metadata.
Commit
e2abd6c4
authored
8 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Remove some FIXMEs: Coq bug 4762 has been fixed in 8.6.
parent
6f23defb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
theories/base_logic/lib/fancy_updates.v
+1
-2
1 addition, 2 deletions
theories/base_logic/lib/fancy_updates.v
theories/proofmode/tactics.v
+9
-16
9 additions, 16 deletions
theories/proofmode/tactics.v
with
10 additions
and
18 deletions
theories/base_logic/lib/fancy_updates.v
+
1
−
2
View file @
e2abd6c4
...
...
@@ -195,8 +195,7 @@ Section proofmode_classes.
Proof
.
by
rewrite
/
ElimModal
fupd_frame_r
wand_elim_r
fupd_trans
.
Qed
.
End
proofmode_classes
.
Hint
Extern
2
(
coq_tactics
.
of_envs
_
⊢
_)
=>
match
goal
with
|
-
_
⊢
|
=
{_}=>
_
=>
iModIntro
end
.
Hint
Extern
2
(
coq_tactics
.
of_envs
_
⊢
|
=
{_}=>
_)
=>
iModIntro
.
(** Fancy updates that take a step. *)
...
...
This diff is collapsed.
Click to expand it.
theories/proofmode/tactics.v
+
9
−
16
View file @
e2abd6c4
...
...
@@ -1270,19 +1270,12 @@ Hint Extern 0 (of_envs _ ⊢ _) => iAssumption.
Hint
Extern
0
(
of_envs
_
⊢
_)
=>
progress
iIntros
.
Hint
Resolve
uPred
.
internal_eq_refl'
.
(* Maybe make an [iReflexivity] tactic *)
(* We should be able to write [Hint Extern 1 (of_envs _ ⊢ (_ ∗ _)%I) => ...],
but then [eauto] mysteriously fails. See bug 4762 *)
Hint
Extern
1
(
of_envs
_
⊢
_)
=>
match
goal
with
|
|
-
_
⊢
_
∧
_
=>
iSplit
|
|
-
_
⊢
_
∗
_
=>
iSplit
|
|
-
_
⊢
▷
_
=>
iNext
|
|
-
_
⊢
□
_
=>
iClear
"*"
;
iAlways
|
|
-
_
⊢
∃
_,
_
=>
iExists
_
|
|
-
_
⊢
|
==>
_
=>
iModIntro
|
|
-
_
⊢
◇
_
=>
iModIntro
end
.
Hint
Extern
1
(
of_envs
_
⊢
_)
=>
match
goal
with
|
-
_
⊢
(_
∨
_)
%
I
=>
iLeft
end
.
Hint
Extern
1
(
of_envs
_
⊢
_)
=>
match
goal
with
|
-
_
⊢
(_
∨
_)
%
I
=>
iRight
end
.
Hint
Extern
1
(
of_envs
_
⊢
_
∧
_)
=>
iSplit
.
Hint
Extern
1
(
of_envs
_
⊢
_
∗
_)
=>
iSplit
.
Hint
Extern
1
(
of_envs
_
⊢
▷
_)
=>
iNext
.
Hint
Extern
1
(
of_envs
_
⊢
□
_)
=>
iClear
"*"
;
iAlways
.
Hint
Extern
1
(
of_envs
_
⊢
∃
_,
_)
=>
iExists
_
.
Hint
Extern
1
(
of_envs
_
⊢
|
==>
_)
=>
iModIntro
.
Hint
Extern
1
(
of_envs
_
⊢
◇
_)
=>
iModIntro
.
Hint
Extern
1
(
of_envs
_
⊢
_
∨
_)
=>
iLeft
.
Hint
Extern
1
(
of_envs
_
⊢
_
∨
_)
=>
iRight
.
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