aboutsummaryrefslogtreecommitdiff
path: root/theories/Numbers/NatInt
diff options
context:
space:
mode:
authorletouzey2010-01-29 14:18:31 +0000
committerletouzey2010-01-29 14:18:31 +0000
commit5c97a67f3227f718a2247c9476029548c4ee8e28 (patch)
tree9fcf5ad61373e9d5bdd5e92e7c65bdd491803acb /theories/Numbers/NatInt
parentff40b0b911ec83b473d1014eeb693e96be1c679e (diff)
Division in numbers: kills some Include to avoid bad alias Zsucc = ZDiv.Z.Z'.S
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@12704 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Numbers/NatInt')
-rw-r--r--theories/Numbers/NatInt/NZDiv.v8
1 files changed, 5 insertions, 3 deletions
diff --git a/theories/Numbers/NatInt/NZDiv.v b/theories/Numbers/NatInt/NZDiv.v
index b189d5b298..1f6c615bc3 100644
--- a/theories/Numbers/NatInt/NZDiv.v
+++ b/theories/Numbers/NatInt/NZDiv.v
@@ -43,11 +43,13 @@ End NZDivSpecific.
Module Type NZDiv (NZ:NZOrdAxiomsSig)
:= DivMod NZ <+ NZDivCommon NZ <+ NZDivSpecific NZ.
-Module Type NZDivSig := NZOrdAxiomsSig <+ NZDiv.
-Module Type NZDivSig' := NZOrdAxiomsSig' <+ NZDiv <+ DivModNotation.
+Module Type NZDiv' (NZ:NZOrdAxiomsSig) := NZDiv NZ <+ DivModNotation NZ.
Module NZDivPropFunct
- (Import NZ : NZDivSig')(Import NZP : NZMulOrderPropSig NZ).
+ (Import NZ : NZOrdAxiomsSig')
+ (Import NZP : NZMulOrderPropSig NZ)
+ (Import NZD : NZDiv' NZ)
+.
(** Uniqueness theorems *)