aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Arith/Euclid_def.v
diff options
context:
space:
mode:
Diffstat (limited to 'theories/Arith/Euclid_def.v')
-rwxr-xr-xtheories/Arith/Euclid_def.v14
1 files changed, 0 insertions, 14 deletions
diff --git a/theories/Arith/Euclid_def.v b/theories/Arith/Euclid_def.v
deleted file mode 100755
index a30b93caf..000000000
--- a/theories/Arith/Euclid_def.v
+++ /dev/null
@@ -1,14 +0,0 @@
-(***********************************************************************)
-(* v * The Coq Proof Assistant / The Coq Development Team *)
-(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
-(* \VV/ *************************************************************)
-(* // * This file is distributed under the terms of the *)
-(* * GNU Lesser General Public License Version 2.1 *)
-(***********************************************************************)
-
-(* $Id$ *)
-
-Require Export Mult.
-
-Inductive diveucl [a,b:nat] : Set
- := divex : (q,r:nat)(gt b r)->(a=(plus (mult q b) r))->(diveucl a b).