Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
stdpp
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
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
stdpp
Commits
8afca298
Commit
8afca298
authored
6 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
Teach typeclass resolution to make progress on telescopic binders
parent
e46551b8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!34
add telescopic versions of the Coq quantifiers
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theories/telescopes.v
+7
-0
7 additions, 0 deletions
theories/telescopes.v
with
7 additions
and
0 deletions
theories/telescopes.v
+
7
−
0
View file @
8afca298
...
...
@@ -185,3 +185,10 @@ Proof.
+
rewrite
<-
(
IH
p
(
λ
a
,
Ψ
(
TargS
p
a
)))
.
intros
[??]
.
eauto
.
Qed
.
(* Teach typeclass resolution how to make progress on these binders *)
Typeclasses
Opaque
tforall
texist
.
Hint
Extern
1
(
tforall
_)
=>
progress
cbn
[
tforall
tele_fold
tele_bind
tele_app
]
:
typeclass_instances
.
Hint
Extern
1
(
texist
_)
=>
progress
cbn
[
texist
tele_fold
tele_bind
tele_app
]
:
typeclass_instances
.
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