Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Rice Wine
Iris
Commits
4172cacd
Commit
4172cacd
authored
Mar 21, 2017
by
Ralf Jung
Browse files
work around Coq bug 5401 breaking 'Print HintDb typeclass_instances'
parent
4a154f08
Changes
1
Hide whitespace changes
Inline
Side-by-side
theories/algebra/vector.v
View file @
4172cacd
...
...
@@ -40,10 +40,10 @@ Section proper.
Context
{
A
:
ofeT
}.
Global
Instance
vcons_ne
n
:
Proper
(
dist
n
==>
forall_relation
(
λ
_
,
dist
n
==>
dist
n
))
(@
vcons
A
).
Proper
(
dist
n
==>
forall_relation
(
λ
x
,
dist
n
==>
dist
n
))
(@
vcons
A
).
Proof
.
by
constructor
.
Qed
.
Global
Instance
vcons_proper
:
Proper
(
equiv
==>
forall_relation
(
λ
_
,
equiv
==>
equiv
))
(@
vcons
A
).
Proper
(
equiv
==>
forall_relation
(
λ
x
,
equiv
==>
equiv
))
(@
vcons
A
).
Proof
.
by
constructor
.
Qed
.
Global
Instance
vlookup_ne
n
m
:
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment