summaryrefslogtreecommitdiff
path: root/theories/ZArith/ZOdiv_def.v
blob: 8b823d9f1b26a6bca1d8d54fa1c936cc8e5d4da8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(************************************************************************)
(*  v      *   The Coq Proof Assistant  /  The Coq Development Team     *)
(* <O___,, *   INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2014     *)
(*   \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.