aboutsummaryrefslogtreecommitdiff
path: root/theories/Num/Definitions.v
diff options
context:
space:
mode:
authorherbelin2007-07-13 14:55:03 +0000
committerherbelin2007-07-13 14:55:03 +0000
commit246909f2c587ed798bc42b65fb90c7b77dfa52b7 (patch)
tree0ea9ba42784b09b9478b32d4dafc01c3b81124d1 /theories/Num/Definitions.v
parenta2b33be15a16de033506da6a4e8b407eaf951054 (diff)
Répertoire Numbers poursuit l'objectif entamé en syntaxe V7 dans le
répertoire Num. Suppression de ce dernier de l'archive courante. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@9995 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Num/Definitions.v')
-rw-r--r--theories/Num/Definitions.v28
1 files changed, 0 insertions, 28 deletions
diff --git a/theories/Num/Definitions.v b/theories/Num/Definitions.v
deleted file mode 100644
index 8ba3314b81..0000000000
--- a/theories/Num/Definitions.v
+++ /dev/null
@@ -1,28 +0,0 @@
-(************************************************************************)
-(* v * The Coq Proof Assistant / The Coq Development Team *)
-(* <O___,, * CNRS-Ecole Polytechnique-INRIA Futurs-Universite Paris Sud *)
-(* \VV/ **************************************************************)
-(* // * This file is distributed under the terms of the *)
-(* * GNU Lesser General Public License Version 2.1 *)
-(************************************************************************)
-
-(*i $Id$ i*)
-
-(** Axiomatisation of a numerical set
-
- It will be instantiated by Z and R later on
- We choose to introduce many operation to allow flexibility in definition
- ([S] is primitive in the definition of [nat] while [add] and [one]
- are primitive in the definition
-*)
-
-Parameter N:Type.
-Parameter zero:N.
-Parameter one:N.
-Parameter add:N->N->N.
-Parameter S:N->N.
-
-(** Relations *)
-Parameter eq,lt,le,gt,ge:N->N->Prop.
-Definition neq [x,y:N] := (eq x y)->False.
-