aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Sets
diff options
context:
space:
mode:
authorGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2008-03-04 17:33:35 +0000
committerGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2008-03-04 17:33:35 +0000
commit58c70113a815a42593c566f64f2de840fc7e48a1 (patch)
treec667f773ad8084832e54cebe46e6fabe07a9adeb /theories/Sets
parent1f559440d19d9e27a3c935a26b6c8447c2220654 (diff)
migration from Set to Type of FSet/FMap + some dependencies...
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@10616 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Sets')
-rw-r--r--theories/Sets/Multiset.v4
-rw-r--r--theories/Sets/Permut.v2
2 files changed, 3 insertions, 3 deletions
diff --git a/theories/Sets/Multiset.v b/theories/Sets/Multiset.v
index 80491c0aa..42130bbb5 100644
--- a/theories/Sets/Multiset.v
+++ b/theories/Sets/Multiset.v
@@ -16,11 +16,11 @@ Set Implicit Arguments.
Section multiset_defs.
- Variable A : Set.
+ Variable A : Type.
Variable eqA : A -> A -> Prop.
Hypothesis Aeq_dec : forall x y:A, {eqA x y} + {~ eqA x y}.
- Inductive multiset : Set :=
+ Inductive multiset : Type :=
Bag : (A -> nat) -> multiset.
Definition EmptyBag := Bag (fun a:A => 0).
diff --git a/theories/Sets/Permut.v b/theories/Sets/Permut.v
index 7c6b551c6..6c9a064c1 100644
--- a/theories/Sets/Permut.v
+++ b/theories/Sets/Permut.v
@@ -15,7 +15,7 @@
Section Axiomatisation.
- Variable U : Set.
+ Variable U : Type.
Variable op : U -> U -> U.
Variable cong : U -> U -> Prop.