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