aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.common
diff options
context:
space:
mode:
authorGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2008-05-16 12:21:36 +0000
committerGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2008-05-16 12:21:36 +0000
commit6c4cb0b91468ac0f7bc95d79f89b88417628127a (patch)
treec8e42704fae2d69398d8963445b24df3550c0f83 /Makefile.common
parent9185da54dc70bf4009ae1bce6a52295cf6d77fe5 (diff)
Filename ZnZ (or Z_nZ in a later attempt) is neither pretty nor accurate
(n _must_ in fact be a power of 2). Worse: Z_31Z is just plain wrong since it is Z/(2^31)Z and not Z/31Z (my fault). As a consequence, switch to CyclicAxioms, Cyclic31, DoubleCyclic, etc git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@10940 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.common b/Makefile.common
index 48e6dff14..a6596d59b 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -617,15 +617,15 @@ NUMBERSCOMMONVO:=$(addprefix theories/Numbers/, \
QRewrite.vo NumPrelude.vo BigNumPrelude.vo )
CYCLICABSTRACTVO:=$(addprefix theories/Numbers/Cyclic/Abstract/, \
- Z_nZ.vo NZCyclic.vo )
+ CyclicAxioms.vo NZCyclic.vo )
CYCLICINT31VO:=$(addprefix theories/Numbers/Cyclic/Int31/, \
- Int31.vo Z_31Z.vo )
+ Int31.vo Cyclic31.vo )
CYCLICDOUBLECYCLICVO:=$(addprefix theories/Numbers/Cyclic/DoubleCyclic/, \
DoubleType.vo DoubleBase.vo DoubleAdd.vo DoubleSub.vo \
DoubleMul.vo DoubleDivn1.vo DoubleDiv.vo DoubleSqrt.vo \
- DoubleLift.vo Z_2nZ.vo )
+ DoubleLift.vo DoubleCyclic.vo )
CYCLICVO:=$(CYCLICABSTRACTVO) $(CYCLICINT31VO) $(CYCLICDOUBLECYCLICVO)