diff options
Diffstat (limited to 'theories/ZArith/ZOdiv_def.v')
-rw-r--r-- | theories/ZArith/ZOdiv_def.v | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/theories/ZArith/ZOdiv_def.v b/theories/ZArith/ZOdiv_def.v new file mode 100644 index 00000000..38d25797 --- /dev/null +++ b/theories/ZArith/ZOdiv_def.v @@ -0,0 +1,15 @@ +(************************************************************************) +(* v * The Coq Proof Assistant / The Coq Development Team *) +(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2012 *) +(* \VV/ **************************************************************) +(* // * This file is distributed under the terms of the *) +(* * GNU Lesser General Public License Version 2.1 *) +(************************************************************************) + +Require Import BinInt. + +Notation ZOdiv_eucl := Z.quotrem (only parsing). +Notation ZOdiv := Z.quot (only parsing). +Notation ZOmod := Z.rem (only parsing). + +Notation ZOdiv_eucl_correct := Z.quotrem_eq. |