Changeset cd6df87 in git
- Timestamp:
- May 11, 2011, 6:44:55 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 686f468cd2868ccd3c847dc0cd0b1417fc7fb0e1
- Parents:
- e432a0567954893b1c33d7a9943e9921184cefef
- git-author:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-05-11 18:44:55+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:36:05+01:00
- Files:
-
- 92 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/Makefile.am
re432a0 rcd6df87 190 190 gengftables_SOURCES = gengftables-conway.cc ftmpl_inst.cc 191 191 192 data_DATA = gftables 193 192 194 gftables: gengftables 193 @echo "This command will take quite a long time to execute;" 194 @echo "maybe you want to get the tables directly via ftp (see" 195 @echo "the INSTALL file)." 196 $(MKINSTALLDIRS) gftables 197 ./gengftables 195 @if test -r ${srcdir}/gftables; then \ 196 cp -r ${srcdir}/gftables ${builddir}; \ 197 else \ 198 echo "This command will take quite a long time to execute;"; \ 199 echo "maybe you want to get the tables directly via ftp (see"; \ 200 echo "the INSTALL file)."; \ 201 ${builddir}/gengftables; \ 202 fi 198 203 199 204 .template.h: … … 256 261 examples/factorize.cc examples/gcd.cc \ 257 262 bin/folding.el bin/fold-docu.el \ 258 bin/makeheader bin/gen-readcf 259 260 CLEANFILES = factory.h factoryconf.h readcf.cc263 bin/makeheader bin/gen-readcf readcf.cc gftables 264 265 CLEANFILES = factory.h factoryconf.h -
factory/cf_hnf.cc
re432a0 rcd6df87 12 12 #include "config.h" 13 13 14 #if 015 14 #ifdef HAVE_NTL 16 15 #include "NTLconvert.h" … … 56 55 } 57 56 #endif 58 #endif -
libpolys/coeffs/longrat.h
re432a0 rcd6df87 88 88 number nlGetDenom(number &n, const coeffs r); 89 89 number nlGetNumerator(number &n, const coeffs r); 90 number nlChineseRemainder(number *x, number *q,int rl);91 90 void nlCoeffWrite(const coeffs r); 92 91 #ifdef LDEBUG -
libpolys/coeffs/rintegers.cc
re432a0 rcd6df87 384 384 r->cfMult = nrzMult; 385 385 r->cfSub = nrzSub; 386 r->nCoeffIsEqual = ndCoeffIsEqual; 386 387 r->cfAdd = nrzAdd; 387 388 r->cfDiv = nrzDiv; -
libpolys/polys/clapsing.cc
re432a0 rcd6df87 375 375 } 376 376 377 #ifdef HAVE_FACTORY 377 378 int singclap_factorize_retry; 379 #if 0 378 380 extern int libfac_interruptflag; 381 #endif 382 #endif 379 383 380 384 ideal singclap_factorize ( poly f, intvec ** v , int with_exps, const ring r) -
libpolys/polys/clapsing.h
re432a0 rcd6df87 62 62 */ 63 63 64 number nlChineseRemainder(number *x, number *q,int rl); 65 64 66 #endif /* INCL_FACTORYSING_H */ 65 67 -
libpolys/polys/simpleideals.cc
re432a0 rcd6df87 1698 1698 */ 1699 1699 #ifdef HAVE_FACTORY 1700 #if 0 1700 1701 ideal id_ChineseRemainder(ideal *xx, number *q, int rl, const ring R) 1701 1702 { … … 1757 1758 } 1758 1759 #endif 1760 #endif 1759 1761 1760 1762 /*2
Note: See TracChangeset
for help on using the changeset viewer.