aboutsummaryrefslogtreecommitdiff
path: root/theories/Numbers/NatInt
diff options
context:
space:
mode:
authorletouzey2010-01-07 15:32:52 +0000
committerletouzey2010-01-07 15:32:52 +0000
commit5794a55f9e8b39b8e562e70593ab794abf463a86 (patch)
tree170ca1c9d68a2b7c4f1306b696a599758dbbf14b /theories/Numbers/NatInt
parent9b6517c0c933fb1d66c7feb53fa57e1697d8124a (diff)
Nicer names: DecidableType2* --> Equalities*, OrderedType2* --> Orders*
Old stuff DecidableType.v and OrderedType.v stay there and keep their names for the moment, for compatibility. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@12641 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Numbers/NatInt')
-rw-r--r--theories/Numbers/NatInt/NZAxioms.v2
-rw-r--r--theories/Numbers/NatInt/NZOrder.v2
2 files changed, 2 insertions, 2 deletions
diff --git a/theories/Numbers/NatInt/NZAxioms.v b/theories/Numbers/NatInt/NZAxioms.v
index 5b4e16cafe..480314f96f 100644
--- a/theories/Numbers/NatInt/NZAxioms.v
+++ b/theories/Numbers/NatInt/NZAxioms.v
@@ -10,7 +10,7 @@
(*i $Id$ i*)
-Require Export DecidableType2 OrderedType2 NumPrelude GenericMinMax.
+Require Export Equalities Orders NumPrelude GenericMinMax.
(** Axiomatization of a domain with zero, successor, predecessor,
and a bi-directional induction principle. We require [P (S n) = n]
diff --git a/theories/Numbers/NatInt/NZOrder.v b/theories/Numbers/NatInt/NZOrder.v
index 6a086f3bd6..9764d15576 100644
--- a/theories/Numbers/NatInt/NZOrder.v
+++ b/theories/Numbers/NatInt/NZOrder.v
@@ -10,7 +10,7 @@
(*i $Id$ i*)
-Require Import NZAxioms NZBase Decidable OrderTac.
+Require Import NZAxioms NZBase Decidable OrdersTac.
Module Type NZOrderPropSig
(Import NZ : NZOrdSig')(Import NZBase : NZBasePropSig NZ).