Changeset 047597 in git
- Timestamp:
- Sep 14, 2011, 6:57:01 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- a55ef037cdd445d3fc4149a3d95a4ebaecf3c2f5
- Parents:
- 1d768d19dda8cae4ddc99de63c5a4e9e6e563ad1
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-09-14 18:57:01+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:48+01:00
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/misc_ip.cc
r1d768d r047597 14 14 15 15 // include header files 16 #include <misc/auxiliary.h> 16 17 #include <kernel/mod2.h> 17 #include <misc/auxiliary.h>18 18 19 19 #ifdef HAVE_FACTORY … … 22 22 #endif 23 23 24 #include <coeffs/si_gmp.h> 25 #include <coeffs/coeffs.h> 26 27 #include <polys/ext_fields/algext.h> 28 #include <polys/ext_fields/transext.h> 29 24 30 #include "misc_ip.h" 25 31 #include "ipid.h" 26 27 #include <coeffs/si_gmp.h>28 #include <coeffs/coeffs.h>29 30 32 #include "feOpt.h" 31 33 #include "silink.h" … … 1111 1113 memset(&sLastPrinted,0,sizeof(sleftv)); 1112 1114 sLastPrinted.rtyp=NONE; 1113 extern int iiInitArithmetic(); 1114 iiInitArithmetic(); 1115 1116 extern int iiInitArithmetic(); iiInitArithmetic(); // iparith.cc 1117 1115 1118 basePack=(package)omAlloc0(sizeof(*basePack)); 1116 1119 currPack=basePack; … … 1121 1124 currPackHdl=h; 1122 1125 basePackHdl=h; 1123 coeffs_BIGINT=nInitChar(n_Q,NULL); 1126 1127 coeffs_BIGINT = nInitChar(n_Q,NULL); 1128 1129 #if 1 1130 // def HAVE_POLYEXTENSIONS 1131 if(TRUE) 1132 { 1133 n_coeffType type = nRegister(n_algExt, naInitChar); 1134 assume(type == n_algExt); 1135 1136 type = nRegister(n_transExt, ntInitChar); 1137 assume(type == n_transExt); 1138 } 1139 #endif 1124 1140 1125 1141 // random generator: ----------------------------------------------- -
libpolys/coeffs/numbers.cc
r1d768d r047597 31 31 #include <coeffs/ffields.h> 32 32 #include <coeffs/shortfl.h> 33 33 34 #ifdef HAVE_RINGS 34 35 #include <coeffs/rmodulo2m.h> … … 39 40 #ifdef HAVE_POLYEXTENSIONS 40 41 #include <polys/ext_fields/algext.h> 42 #include <polys/ext_fields/transext.h> 41 43 #endif 42 44 … … 177 179 #ifdef HAVE_POLYEXTENSIONS 178 180 naInitChar, /* n_algExt */ 181 ntInitChar, /* n_transExt */ 179 182 #else 180 183 NULL, /* n_algExt */ 181 #endif182 NULL, /* n_transExt */184 NULL, /* n_transExt */ 185 #endif 183 186 ngcInitChar, /* n_long_C */ 184 187 #ifdef HAVE_RINGS … … 255 258 nOK = (nInitCharTable[t])(n,parameter); 256 259 else 257 Werror(" nInitCharTable[%d] missing",(int)t);260 Werror("Sorry: the coeff type [%d] was not registered: it is missing in nInitCharTable", (int)t); 258 261 if (nOK) 259 262 { -
libpolys/configure.ac
r1d768d r047597 83 83 AC_DEFINE([NOSTREAMIO],[1],[DISABLE_GMP_CPP]) 84 84 85 ## AC_DEFINE([HAVE_POLYEXTENSIONS], [1], [Enable the algebraic & transcendental extensions]) 86 85 87 AC_CONFIG_FILES([Makefile]) 86 88 AC_CONFIG_FILES([misc/Makefile])
Note: See TracChangeset
for help on using the changeset viewer.