summaryrefslogtreecommitdiff
path: root/theories/Relations
diff options
context:
space:
mode:
Diffstat (limited to 'theories/Relations')
-rw-r--r--theories/Relations/Operators_Properties.v2
-rw-r--r--theories/Relations/Relation_Operators.v8
-rw-r--r--theories/Relations/Relations.v2
-rw-r--r--theories/Relations/Rstar.v4
4 files changed, 8 insertions, 8 deletions
diff --git a/theories/Relations/Operators_Properties.v b/theories/Relations/Operators_Properties.v
index 7e202359..0638ca8f 100644
--- a/theories/Relations/Operators_Properties.v
+++ b/theories/Relations/Operators_Properties.v
@@ -6,7 +6,7 @@
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
-(*i $Id: Operators_Properties.v 9597 2007-02-06 19:44:05Z herbelin $ i*)
+(*i $Id: Operators_Properties.v 9598 2007-02-06 19:45:52Z herbelin $ i*)
(****************************************************************************)
(* Bruno Barras *)
diff --git a/theories/Relations/Relation_Operators.v b/theories/Relations/Relation_Operators.v
index 4c5a6519..87cd1e6f 100644
--- a/theories/Relations/Relation_Operators.v
+++ b/theories/Relations/Relation_Operators.v
@@ -6,7 +6,7 @@
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
-(*i $Id: Relation_Operators.v 9610 2007-02-07 14:45:18Z herbelin $ i*)
+(*i $Id: Relation_Operators.v 10681 2008-03-16 13:40:45Z msozeau $ i*)
(****************************************************************************)
(* Bruno Barras, Cristina Cornes *)
@@ -83,9 +83,9 @@ Variable leA : A -> A -> Prop.
Variable leB : B -> B -> Prop.
Inductive le_AsB : A + B -> A + B -> Prop :=
- | le_aa : forall x y:A, leA x y -> le_AsB (inl B x) (inl B y)
- | le_ab : forall (x:A) (y:B), le_AsB (inl B x) (inr A y)
- | le_bb : forall x y:B, leB x y -> le_AsB (inr A x) (inr A y).
+ | le_aa : forall x y:A, leA x y -> le_AsB (inl _ x) (inl _ y)
+ | le_ab : forall (x:A) (y:B), le_AsB (inl _ x) (inr _ y)
+ | le_bb : forall x y:B, leB x y -> le_AsB (inr _ x) (inr _ y).
End Disjoint_Union.
diff --git a/theories/Relations/Relations.v b/theories/Relations/Relations.v
index 9da30e9b..6368ae25 100644
--- a/theories/Relations/Relations.v
+++ b/theories/Relations/Relations.v
@@ -6,7 +6,7 @@
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
-(*i $Id: Relations.v 9597 2007-02-06 19:44:05Z herbelin $ i*)
+(*i $Id: Relations.v 9598 2007-02-06 19:45:52Z herbelin $ i*)
Require Export Relation_Definitions.
Require Export Relation_Operators.
diff --git a/theories/Relations/Rstar.v b/theories/Relations/Rstar.v
index 91d2aaa4..82668006 100644
--- a/theories/Relations/Rstar.v
+++ b/theories/Relations/Rstar.v
@@ -6,7 +6,7 @@
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
-(*i $Id: Rstar.v 9245 2006-10-17 12:53:34Z notin $ i*)
+(*i $Id: Rstar.v 9642 2007-02-12 10:31:53Z herbelin $ i*)
(** Properties of a binary relation [R] on type [A] *)
@@ -87,7 +87,7 @@ Section Rstar.
(** Property of Commutativity of two relations *)
- Definition commut (A:Set) (R1 R2:A -> A -> Prop) :=
+ Definition commut (A:Type) (R1 R2:A -> A -> Prop) :=
forall x y:A,
R1 y x -> forall z:A, R2 z y -> exists2 y' : A, R2 y' x & R1 z y'.