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
e626f081
Commit
e626f081
authored
5 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Change mode of `TCEq`.
parent
20ef8941
No related branches found
No related tags found
1 merge request
!123
Change mode of `TCEq`.
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theories/base.v
+5
-5
5 additions, 5 deletions
theories/base.v
with
5 additions
and
5 deletions
theories/base.v
+
5
−
5
View file @
e626f081
...
...
@@ -146,14 +146,14 @@ Existing Instance TCElemOf_here.
Existing
Instance
TCElemOf_further
.
Hint
Mode
TCElemOf
!
!
!
:
typeclass_instances
.
(** Similarly to [TCForall2], we declare the modes of [TCEq x y] in both
directions, i.e., either [x] input and [y] output, or [y] input and [x]
output. *)
(** We declare both arguments [x] and [y] of [TCEq x y] as outputs, which means
[TCEq] can also be used to unify evars. This is harmless: since the only
instance of [TCEq] is [TCEq_refl] below, it can never cause loops. See
https://gitlab.mpi-sws.org/iris/iris/merge_requests/391 for a use case. *)
Inductive
TCEq
{
A
}
(
x
:
A
)
:
A
→
Prop
:=
TCEq_refl
:
TCEq
x
x
.
Existing
Class
TCEq
.
Existing
Instance
TCEq_refl
.
Hint
Mode
TCEq
!
!
-
:
typeclass_instances
.
Hint
Mode
TCEq
!
-
!
:
typeclass_instances
.
Hint
Mode
TCEq
!
-
-
:
typeclass_instances
.
Inductive
TCDiag
{
A
}
(
C
:
A
→
Prop
)
:
A
→
A
→
Prop
:=
|
TCDiag_diag
x
:
C
x
→
TCDiag
C
x
x
.
...
...
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