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
Iris
stdpp
Commits
ee3e02f0
Commit
ee3e02f0
authored
Jan 04, 2017
by
Ralf Jung
Committed by
Robbert Krebbers
Jan 31, 2017
Browse files
don't use Proof Using in a few files that get too many unnecessary annotations from this
parent
2028fae1
Changes
2
Hide whitespace changes
Inline
Side-by-side
theories/collections.v
View file @
ee3e02f0
...
...
@@ -4,7 +4,8 @@
importantly, it implements some tactics to automatically solve goals involving
collections. *)
From
stdpp
Require
Export
orders
list
.
Set
Default
Proof
Using
"Type*"
.
(* FIXME: This file needs a 'Proof Using' hint, but the default we use
everywhere makes for lots of extra ssumptions. *)
Instance
collection_equiv
`
{
ElemOf
A
C
}
:
Equiv
C
:
=
λ
X
Y
,
∀
x
,
x
∈
X
↔
x
∈
Y
.
...
...
theories/fin_maps.v
View file @
ee3e02f0
...
...
@@ -6,7 +6,8 @@ induction principles for finite maps and implements the tactic
[simplify_map_eq] to simplify goals involving finite maps. *)
From
Coq
Require
Import
Permutation
.
From
stdpp
Require
Export
relations
orders
vector
.
Set
Default
Proof
Using
"Type*"
.
(* FIXME: This file needs a 'Proof Using' hint, but the default we use
everywhere makes for lots of extra ssumptions. *)
(** * Axiomatization of finite maps *)
(** We require Leibniz equality to be extensional on finite maps. This of
...
...
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