aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Sets/Relations_3.v
diff options
context:
space:
mode:
authorGravatar filliatr <filliatr@85f007b7-540e-0410-9357-904b9bb8a0f7>2000-06-21 01:12:06 +0000
committerGravatar filliatr <filliatr@85f007b7-540e-0410-9357-904b9bb8a0f7>2000-06-21 01:12:06 +0000
commit71f380cb047a98d95b743edf98fe03bd041ea7bc (patch)
treecc8702b5f493b2bf0011eca7229e294417a03456 /theories/Sets/Relations_3.v
parent0940e93d753c2df977e44d40f5b9d9652e881def (diff)
theories/Sets
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@509 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Sets/Relations_3.v')
-rwxr-xr-xtheories/Sets/Relations_3.v57
1 files changed, 57 insertions, 0 deletions
diff --git a/theories/Sets/Relations_3.v b/theories/Sets/Relations_3.v
new file mode 100755
index 000000000..7b427aa5f
--- /dev/null
+++ b/theories/Sets/Relations_3.v
@@ -0,0 +1,57 @@
+(****************************************************************************)
+(* *)
+(* Naive Set Theory in Coq *)
+(* *)
+(* INRIA INRIA *)
+(* Rocquencourt Sophia-Antipolis *)
+(* *)
+(* Coq V6.1 *)
+(* *)
+(* Gilles Kahn *)
+(* Gerard Huet *)
+(* *)
+(* *)
+(* *)
+(* Acknowledgments: This work was started in July 1993 by F. Prost. Thanks *)
+(* to the Newton Institute for providing an exceptional work environment *)
+(* in Summer 1995. Several developments by E. Ledinot were an inspiration. *)
+(****************************************************************************)
+
+Require Export Relations_1.
+Require Export Relations_2.
+
+Section Relations_3.
+ Variable U: Type.
+ Variable R: (Relation U).
+
+ Definition coherent : U -> U -> Prop :=
+ [x,y: U] (EXT z | (Rstar U R x z) /\ (Rstar U R y z)).
+
+ Definition locally_confluent : U -> Prop :=
+ [x: U] (y,z: U) (R x y) -> (R x z) -> (coherent y z).
+
+ Definition Locally_confluent : Prop := (x: U) (locally_confluent x).
+
+ Definition confluent : U -> Prop :=
+ [x: U] (y,z: U) (Rstar U R x y) -> (Rstar U R x z) -> (coherent y z).
+
+ Definition Confluent : Prop := (x: U) (confluent x).
+
+ Inductive noetherian : U -> Prop :=
+ definition_of_noetherian:
+ (x: U) ((y: U) (R x y) -> (noetherian y)) -> (noetherian x).
+
+ Definition Noetherian : Prop := (x: U) (noetherian x).
+
+End Relations_3.
+Hints Unfold coherent : sets v62.
+Hints Unfold locally_confluent : sets v62.
+Hints Unfold confluent : sets v62.
+Hints Unfold Confluent : sets v62.
+Hints Resolve definition_of_noetherian : sets v62.
+Hints Unfold Noetherian : sets v62.
+
+
+
+
+(* $Id$ *)