Changeset 45fefa in git
- Timestamp:
- May 6, 2008, 3:31:30 PM (16 years ago)
- Branches:
- (u'spielwiese', 'ec94ef7a30b928574c0c3daf41f6804dff5f6b69')
- Children:
- 051dc72633dcf2d9993b3709998eb856cd3d02e1
- Parents:
- ca474f6d70f7221d2d9fb85392d58d4c0ece0948
- Location:
- ntl
- Files:
-
- 2 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
ntl/README
rca474f r45fefa 1 NTL -- a library for doing numbery theory -- version 5.4. 12 Release date: 200 7.05.091 NTL -- a library for doing numbery theory -- version 5.4.2 2 Release date: 2008.03.05 3 3 4 4 Author: Victor Shoup (victor@shoup.net) -
ntl/doc/tour-changes.html
rca474f r45fefa 20 20 <p> <hr> <p> 21 21 <h3> 22 2008.03.05: Changes between NTL 5.4.1 and 5.4.2 23 </h3> 24 25 <ul> 26 <li> 27 Fixed a bug in the <tt>sub(ZZ_pEX, ZZ_pE, ZZ_pEX)</tt> 28 and <tt>sub(zz_pEX, zz_pE, zz_pEX)</tt> routines (reported by Charanjit Jutla). 29 Under certain circumstances, these could outout wrong answers. 30 31 </ul> 32 33 <p> <hr> <p> 34 <h3> 22 35 2007.05.09: Changes between NTL 5.4 and 5.4.1 23 36 </h3> … … 25 38 <ul> 26 39 <li> 27 Fixed rounding bug in <tt>expm1</tt> (reported by Paul Zimmerman ).40 Fixed rounding bug in <tt>expm1</tt> (reported by Paul Zimmermann). 28 41 29 42 <li> … … 35 48 36 49 <li> 37 Improved <tt>GF2X</tt> timing tests (suggested by Paul Zimmerman ).50 Improved <tt>GF2X</tt> timing tests (suggested by Paul Zimmermann). 38 51 39 52 </ul> -
ntl/include/NTL/version.h
rca474f r45fefa 3 3 #define NTL_version__H 4 4 5 #define NTL_VERSION "5.4. 1"5 #define NTL_VERSION "5.4.2" 6 6 7 7 #define NTL_MAJOR_VERSION (5) 8 8 #define NTL_MINOR_VERSION (4) 9 #define NTL_REVISION ( 1)9 #define NTL_REVISION (2) 10 10 11 11 #endif -
ntl/src/ZZ_pEX.c
rca474f r45fefa 504 504 else if (x.rep.MaxLength() == 0) { 505 505 negate(x, a); 506 add(x.rep[0], a.rep[0], b);506 add(x.rep[0], x.rep[0], b); 507 507 x.normalize(); 508 508 } -
ntl/src/def_makefile
rca474f r45fefa 292 292 293 293 all: 294 $(MAKE)setup1295 $(MAKE)setup2296 $(MAKE)setup3297 $(MAKE)setup4298 $(MAKE)ntl.a294 make setup1 295 make setup2 296 make setup3 297 make setup4 298 make ntl.a 299 299 300 300 … … 359 359 360 360 check: 361 $(MAKE)QuickTest361 make QuickTest 362 362 ./QuickTest 363 363 - sh RemoveProg QuickTest … … 437 437 438 438 439 DIRNAME=ntl-5.4.1440 WINDIR=WinNTL-5_4_1441 442 439 package: 443 sh unixify "$(SFILES)" "$(INCL)" "$(DOC)" 444 -rm -r $(DIRNAME) 445 mv unix $(DIRNAME) 446 chmod -R a+rX $(DIRNAME) 447 tar -cvf $(DIRNAME).tar $(DIRNAME) 448 gzip $(DIRNAME).tar 449 - rm -r $(DIRNAME) 440 sh unixify "$(SFILES) DIRNAME WINDIR" "$(INCL)" "$(DOC)" 441 -rm -rf `cat DIRNAME` 442 - rm -f `cat DIRNAME`.tar 443 - rm -f `cat DIRNAME`.tar.gz 444 mv unix `cat DIRNAME` 445 chmod -R a+rX `cat DIRNAME` 446 tar -cvf `cat DIRNAME`.tar `cat DIRNAME` 447 gzip `cat DIRNAME`.tar 448 - rm -rf `cat DIRNAME` 450 449 451 450 winpack: 452 451 sh dosify "$(SRC)" "$(INCL)" "$(DOC)" "$(TS)" "$(TD)" "$(SINC)" 453 - rm -r $(WINDIR)454 mv dos $(WINDIR)455 chmod -R a+rX $(WINDIR)456 find ./$(WINDIR) '!' -name '*.gif' -print | zip -l $(WINDIR) -@457 find ./ $(WINDIR) -name '*.gif' -print | zip -u $(WINDIR)-@458 rm -r $(WINDIR)459 452 - rm -rf `cat WINDIR` 453 - rm -f `cat WINDIR`.zip 454 mv dos `cat WINDIR` 455 chmod -R a+rX `cat WINDIR` 456 find ./`cat WINDIR` '!' -name '*.gif' -print | zip -l `cat WINDIR` -@ 457 find ./`cat WINDIR` -name '*.gif' -print | zip -u `cat WINDIR` -@ 458 rm -rf `cat WINDIR` 460 459 461 460 … … 498 497 DispSettings: 499 498 $(LINK_CXX) -o DispSettings DispSettings.c $(LDLIBS_CXX) 499 500 501 502 ################################################################ 503 # 504 # Notes on making a new distribution 505 # 506 # - change version numbers in ../include/NTL/version.h, DIRNAME, and WINDIR 507 # 508 # - if changes were made to makefile or ../include/NTL/config.h, 509 # make sure these changes are implemented in the template files 510 # mfile and cfile, and then run: 511 # ./configure 512 # cp makefile def_makefile 513 # cp ../include/NTL/config.h ../include/NTL/def_config.h 514 # 515 # - run: 516 # make package 517 # make winpack 518 # 519 ################################################################ 520 521 -
ntl/src/lzz_pEX.c
rca474f r45fefa 507 507 else if (x.rep.MaxLength() == 0) { 508 508 negate(x, a); 509 add(x.rep[0], a.rep[0], b);509 add(x.rep[0], x.rep[0], b); 510 510 x.normalize(); 511 511 } -
ntl/src/mfile
rca474f r45fefa 437 437 438 438 439 DIRNAME=ntl-5.4.1440 WINDIR=WinNTL-5_4_1441 442 439 package: 443 sh unixify "$(SFILES)" "$(INCL)" "$(DOC)" 444 -rm -r $(DIRNAME) 445 mv unix $(DIRNAME) 446 chmod -R a+rX $(DIRNAME) 447 tar -cvf $(DIRNAME).tar $(DIRNAME) 448 gzip $(DIRNAME).tar 449 - rm -r $(DIRNAME) 440 sh unixify "$(SFILES) DIRNAME WINDIR" "$(INCL)" "$(DOC)" 441 -rm -rf `cat DIRNAME` 442 - rm -f `cat DIRNAME`.tar 443 - rm -f `cat DIRNAME`.tar.gz 444 mv unix `cat DIRNAME` 445 chmod -R a+rX `cat DIRNAME` 446 tar -cvf `cat DIRNAME`.tar `cat DIRNAME` 447 gzip `cat DIRNAME`.tar 448 - rm -rf `cat DIRNAME` 450 449 451 450 winpack: 452 451 sh dosify "$(SRC)" "$(INCL)" "$(DOC)" "$(TS)" "$(TD)" "$(SINC)" 453 - rm -r $(WINDIR)454 mv dos $(WINDIR)455 chmod -R a+rX $(WINDIR)456 find ./$(WINDIR) '!' -name '*.gif' -print | zip -l $(WINDIR) -@457 find ./ $(WINDIR) -name '*.gif' -print | zip -u $(WINDIR)-@458 rm -r $(WINDIR)459 452 - rm -rf `cat WINDIR` 453 - rm -f `cat WINDIR`.zip 454 mv dos `cat WINDIR` 455 chmod -R a+rX `cat WINDIR` 456 find ./`cat WINDIR` '!' -name '*.gif' -print | zip -l `cat WINDIR` -@ 457 find ./`cat WINDIR` -name '*.gif' -print | zip -u `cat WINDIR` -@ 458 rm -rf `cat WINDIR` 460 459 461 460 … … 498 497 DispSettings: 499 498 $(LINK_CXX) -o DispSettings DispSettings.c $(LDLIBS_CXX) 499 500 501 502 ################################################################ 503 # 504 # Notes on making a new distribution 505 # 506 # - change version numbers in ../include/NTL/version.h, DIRNAME, and WINDIR 507 # 508 # - if changes were made to makefile or ../include/NTL/config.h, 509 # make sure these changes are implemented in the template files 510 # mfile and cfile, and then run: 511 # ./configure 512 # cp makefile def_makefile 513 # cp ../include/NTL/config.h ../include/NTL/def_config.h 514 # 515 # - run: 516 # make package 517 # make winpack 518 # 519 ################################################################ 520 521
Note: See TracChangeset
for help on using the changeset viewer.