summaryrefslogtreecommitdiff
path: root/theories/Numbers/Natural/Abstract/NProperties.v
blob: 9073941018975a317366af169ae899fa619649c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(************************************************************************)
(*  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 Export NAxioms.
Require Import NMaxMin NParity NPow NSqrt NLog NDiv NGcd NLcm NBits.

(** This functor summarizes all known facts about N. *)

Module Type NProp (N:NAxiomsSig) :=
 NMaxMinProp N <+ NParityProp N <+ NPowProp N <+ NSqrtProp N
  <+ NLog2Prop N <+ NDivProp N <+ NGcdProp N <+ NLcmProp N
  <+ NBitsProp N.