Built with Alectryon, running Coq+SerAPI v8.10.0+0.7.0. Coq sources are in this panel; goals and messages will appear in the other. Bubbles () indicate interactive fragments: hover for details, tap to reveal contents. Use Ctrl+↑ Ctrl+↓ to navigate, Ctrl+🖱️ to focus.
(************************************************************************) (* * The Coq Proof Assistant / The Coq Development Team *) (* v * INRIA, CNRS and contributors - Copyright 1999-2018 *) (* <O___,, * (see CREDITS file for the list of authors) *) (* \VV/ **************************************************************) (* // * This file is distributed under the terms of the *) (* * GNU Lesser General Public License Version 2.1 *) (* * (see LICENSE file for the text of the license) *) (************************************************************************) Require Import BinNat. Local Open Scope N_scope.
Obsolete file, see BinNat now,
only compatibility notations remain here.
Definition Pdiv_eucl a b := N.pos_div_eucl a (Npos b). Definition Pdiv_eucl_correct a b : let (q,r) := Pdiv_eucl a b in Npos a = q * Npos b + r := N.pos_div_eucl_spec a (Npos b).a, b:positivesnd (Pdiv_eucl a b) < N.pos bnow apply (N.pos_div_eucl_remainder a (Npos b)). Qed. Notation Nmod := N.modulo (only parsing). Notation Ndiv_eucl_correct := N.div_eucl_spec (only parsing). Notation Ndiv_mod_eq := N.div_mod' (only parsing).a, b:positivesnd (Pdiv_eucl a b) < N.pos b