You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

739 lines
19 KiB

Extend the exponent range from 32 bits to 64 bits on selected platforms. * include/cln/number.h: Add signatures for operations with long long. * include/cln/complex_class.h: Likewise. * include/cln/real_class.h: Likewise. * include/cln/real.h: Likewise. * include/cln/rational_class.h: Likewise. * include/cln/rational.h: Likewise. * include/cln/integer_class.h: Likewise. * include/cln/integer.h: Likewise. * include/cln/float.h: Likewise. * include/cln/lfloat.h: Likewise. * include/cln/types.h (sintE and uintE): New types for exponents. * include/cln/*float.h: Use the new types for exponents. * include/cln/floatformat.h (float_format_t): Make underlying type compatible with sintE. * doc/cln.tex: Document changed float_exponent return value. * src/float/cl_F.h: Likewise. * src/float/ffloat/misc/cl_FF_exponent.cc: Likewise. * src/float/input/cl_F_read.cc: Likewise. * src/float/lfloat/cl_LF.h: Likewise. * src/float/lfloat/cl_LF_impl.h: Likewise. * src/float/lfloat/algebraic/cl_LF_sqrt.cc: Likewise. * src/float/lfloat/elem/cl_LF_1plus.cc: Likewise. * src/float/lfloat/elem/cl_LF_I_div.cc: Likewise. * src/float/lfloat/elem/cl_LF_I_mul.cc: Likewise. * src/float/lfloat/elem/cl_LF_compare.cc: Likewise. * src/float/lfloat/elem/cl_LF_div.cc: Likewise. * src/float/lfloat/elem/cl_LF_from_I.cc: Likewise. * src/float/lfloat/elem/cl_LF_fround.cc: Likewise. * src/float/lfloat/elem/cl_LF_ftrunc.cc: Likewise. * src/float/lfloat/elem/cl_LF_futrunc.cc: Likewise. * src/float/lfloat/elem/cl_LF_mul.cc: Likewise. * src/float/lfloat/elem/cl_LF_scale.cc: Likewise. * src/float/lfloat/elem/cl_LF_scale_I.cc: Likewise. * src/float/lfloat/elem/cl_LF_square.cc: Likewise. * src/float/lfloat/elem/cl_LF_to_I.cc: Likewise. * src/float/lfloat/misc/cl_LF_decode.cc: Likewise. * src/float/lfloat/misc/cl_LF_exponent.cc: Likewise. * src/float/lfloat/misc/cl_LF_idecode.cc: Likewise. * src/float/lfloat/misc/cl_LF_shortenrel.cc: Likewise. * src/float/lfloat/misc/cl_LF_shortenwith.cc: Likewise. * src/float/misc/cl_F_decode.cc: Likewise. * src/float/misc/cl_F_exponent.cc: Likewise. * src/float/misc/cl_F_shortenrel.cc: Likewise. * src/float/misc/cl_float_format.cc: Likewise. * src/float/output/cl_F_dprint.cc: Likewise. * src/float/sfloat/misc/cl_SF_exponent.cc: Likewise. * src/float/transcendental/cl_F_atanhx.cc: Likewise. * src/float/transcendental/cl_F_atanx.cc: Likewise. * src/float/transcendental/cl_F_cosh.cc: Likewise. * src/float/transcendental/cl_F_expx.cc: Likewise. * src/float/transcendental/cl_F_lnx.cc: Likewise. * src/float/transcendental/cl_F_sinhx.cc: Likewise. * src/float/transcendental/cl_F_sinx.cc: Likewise. * src/float/transcendental/cl_LF_pi.cc: Likewise. * src/integer/cl_I.h: Likewise. * src/complex/algebraic/cl_LF_hypot.cc: Likewise. * src/complex/elem/division/cl_C_LF_recip.cc: Likewise. * src/float/dfloat/misc/cl_DF_exponent.cc: Likewise. * src/integer/conv/cl_I_from_Q2.cc: Added. * src/base/cl_low.h (isqrtC): New function, for 64 bit falls back to... * src/base/low/cl_low_isqrt.cc (isqrt): ...this new implementation. * src/base/cl_macros.h (bitc): Make sure 64 bit is used if required by exponent operations. * examples/pi.cc: Support more than 646456614 decimal digits.
18 years ago
Extend the exponent range from 32 bits to 64 bits on selected platforms. * include/cln/number.h: Add signatures for operations with long long. * include/cln/complex_class.h: Likewise. * include/cln/real_class.h: Likewise. * include/cln/real.h: Likewise. * include/cln/rational_class.h: Likewise. * include/cln/rational.h: Likewise. * include/cln/integer_class.h: Likewise. * include/cln/integer.h: Likewise. * include/cln/float.h: Likewise. * include/cln/lfloat.h: Likewise. * include/cln/types.h (sintE and uintE): New types for exponents. * include/cln/*float.h: Use the new types for exponents. * include/cln/floatformat.h (float_format_t): Make underlying type compatible with sintE. * doc/cln.tex: Document changed float_exponent return value. * src/float/cl_F.h: Likewise. * src/float/ffloat/misc/cl_FF_exponent.cc: Likewise. * src/float/input/cl_F_read.cc: Likewise. * src/float/lfloat/cl_LF.h: Likewise. * src/float/lfloat/cl_LF_impl.h: Likewise. * src/float/lfloat/algebraic/cl_LF_sqrt.cc: Likewise. * src/float/lfloat/elem/cl_LF_1plus.cc: Likewise. * src/float/lfloat/elem/cl_LF_I_div.cc: Likewise. * src/float/lfloat/elem/cl_LF_I_mul.cc: Likewise. * src/float/lfloat/elem/cl_LF_compare.cc: Likewise. * src/float/lfloat/elem/cl_LF_div.cc: Likewise. * src/float/lfloat/elem/cl_LF_from_I.cc: Likewise. * src/float/lfloat/elem/cl_LF_fround.cc: Likewise. * src/float/lfloat/elem/cl_LF_ftrunc.cc: Likewise. * src/float/lfloat/elem/cl_LF_futrunc.cc: Likewise. * src/float/lfloat/elem/cl_LF_mul.cc: Likewise. * src/float/lfloat/elem/cl_LF_scale.cc: Likewise. * src/float/lfloat/elem/cl_LF_scale_I.cc: Likewise. * src/float/lfloat/elem/cl_LF_square.cc: Likewise. * src/float/lfloat/elem/cl_LF_to_I.cc: Likewise. * src/float/lfloat/misc/cl_LF_decode.cc: Likewise. * src/float/lfloat/misc/cl_LF_exponent.cc: Likewise. * src/float/lfloat/misc/cl_LF_idecode.cc: Likewise. * src/float/lfloat/misc/cl_LF_shortenrel.cc: Likewise. * src/float/lfloat/misc/cl_LF_shortenwith.cc: Likewise. * src/float/misc/cl_F_decode.cc: Likewise. * src/float/misc/cl_F_exponent.cc: Likewise. * src/float/misc/cl_F_shortenrel.cc: Likewise. * src/float/misc/cl_float_format.cc: Likewise. * src/float/output/cl_F_dprint.cc: Likewise. * src/float/sfloat/misc/cl_SF_exponent.cc: Likewise. * src/float/transcendental/cl_F_atanhx.cc: Likewise. * src/float/transcendental/cl_F_atanx.cc: Likewise. * src/float/transcendental/cl_F_cosh.cc: Likewise. * src/float/transcendental/cl_F_expx.cc: Likewise. * src/float/transcendental/cl_F_lnx.cc: Likewise. * src/float/transcendental/cl_F_sinhx.cc: Likewise. * src/float/transcendental/cl_F_sinx.cc: Likewise. * src/float/transcendental/cl_LF_pi.cc: Likewise. * src/integer/cl_I.h: Likewise. * src/complex/algebraic/cl_LF_hypot.cc: Likewise. * src/complex/elem/division/cl_C_LF_recip.cc: Likewise. * src/float/dfloat/misc/cl_DF_exponent.cc: Likewise. * src/integer/conv/cl_I_from_Q2.cc: Added. * src/base/cl_low.h (isqrtC): New function, for 64 bit falls back to... * src/base/low/cl_low_isqrt.cc (isqrt): ...this new implementation. * src/base/cl_macros.h (bitc): Make sure 64 bit is used if required by exponent operations. * examples/pi.cc: Support more than 646456614 decimal digits.
18 years ago
Remove exception hooks in favor of real C++ exceptions: * include/cln/exception.h: New file... * include/cln/cln.h: ...included here... * include/cln/rational.h: ...and here. * include/cln/abort.h: Removed. * include/cln/integer.h (ash_exception, exquo_exception): Add exception types. * include/cln/float.h (floating_point_exception, floating_point_nan_exception, floating_point_overflow_exception, floating_point_underflow_exception): Likewise. * include/cln/number_io.h (read_number_exception, read_number_bad_syntax_exception, read_number_junk_exception, read_number_eof_exception): Likewise. * include/cln/object.h (CL_DEFINE_CONVERTER): Replace dynamic assertion with a compile-time assertion. * include/cln/GV.h: Replace nonreturning functions with exceptions. * include/cln/modinteger.h: Likewise. * include/cln/SV.h: Likewise. * include/cln/ring.h: Likewise. * include/cln/string.h: Likewise. * include/cln/univpoly.h: Likewise. * src/base/cl_abort.cc: Removed. * src/base/cl_N_err_d0.cc: Removed. * src/base/cl_d0_exception.cc: New file. * src/base/cl_as_err.cc: Removed. * src/base/cl_as_exception.cc: New file. * src/base/cl_notreached.cc: Removed. * src/base/cl_notreached_exception.cc: New file. * src/base/input/cl_read_err_bad.cc: Removed. * src/base/input/cl_read_bad_syntax_exception.cc: New file. * src/base/input/cl_read_err_junk.cc: Removed. * src/base/input/cl_read_junk_exception.cc: New file. * src/base/input/cl_read_err_eof.cc: Removed. * src/base/input/cl_read_eof_exception.cc: New file. * src/base/cl_N.h (cl_as_error): Removed (see cln/exception.h). * src/base/macros.h (NOTREACHED): Throw. * src/base/cl_malloc.cc (xmalloc): Throw. * src/base/digitseq/cl_2DS_div.cc: Throw. * src/base/digitseq/cl_DS_div.cc: Throw. * src/base/digitseq/cl_DS_mul.cc: Throw. * src/base/digitseq/cl_DS_mul_fftc.h: Throw. * src/base/digitseq/cl_DS_mul_fftcs.h: Throw. * src/base/digitseq/cl_DS_mul_fftm.h: Throw. * src/base/digitseq/cl_DS_mul_fftp.h: Throw. * src/base/digitseq/cl_DS_mul_fftp3.h: Throw. * src/base/digitseq/cl_DS_mul_fftp3m.h: Throw. * src/base/digitseq/cl_DS_mul_fftr.h: Throw. * src/base/digitseq/cl_DS_mul_nuss.h: Throw. * src/base/digitseq/cl_DS_recipsqrt.cc: Throw. * src/base/digitseq/cl_DS_sqrt.cc: Throw. * src/base/hash/cl_hash.h: Throw. * src/base/hash/cl_hash1.h: Throw. * src/base/hash/cl_hash1weak.h: Throw. * src/base/hash/cl_hash2.h: Throw. * src/base/hash/cl_hash2weak.h: Throw. * src/base/hash/cl_hashset.h: Throw. * src/base/hash/cl_hashuniq.h: Throw. * src/base/hash/cl_hashuniqweak.h: Throw. * src/base/proplist/cl_pl_add.cc: Throw. * src/base/ring/cl_no_ring.cc: Throw. * src/base/string/cl_spushstring.h: Throw. * src/base/symbol/cl_symbol.cc: Throw. * src/integer/bitwise/cl_I_ash.h: Removed (see cln/integer.h.) * src/integer/bitwise/cl_I_asherr.cc: Removed. * src/integer/bitwise/cl_I_ash_exception.cc: New file. * src/integer/division/cl_I_exquoerr.cc: Removed. * src/integer/division/cl_I_exquo_exception.cc: New file. * src/integer/cl_I.h: Throw. * src/integer/division/cl_I_exquopos.cc: Throw. * src/integer/bitwise/cl_I_logbitp_I.cc: Throw. * src/integer/bitwise/cl_I_ash.cc: Throw. * src/integer/bitwise/cl_I_ash_I.cc: Throw. * src/integer/division/cl_I_exquo.cc: Throw. * src/integer/gcd/cl_I_gcd_aux2.cc: Throw. * src/integer/conv/cl_I_to_L.cc: Throw. * src/integer/conv/cl_I_to_Q.cc: Throw. * src/integer/conv/cl_I_to_UL.cc: Throw. * src/integer/conv/cl_I_to_UQ.cc: Throw. * src/integer/conv/cl_I_to_digits.cc: Throw. * src/integer/elem/cl_I_div.cc: Throw. * src/integer/algebraic/cl_I_sqrt.cc: Throw. * src/integer/input/cl_I_read.cc: Throw. * src/integer/input/cl_I_read_stream.cc: Throw. * src/integer/misc/cl_I_as.cc: Throw. * src/rational/elem/cl_RA_from_I_I_div.cc: Throw. * src/rational/elem/cl_RA_recip.cc: Throw. * src/rational/input/cl_RA_read.cc: Throw. * src/rational/input/cl_RA_read_stream.cc: Throw. * src/rational/input/cl_RA_readparsed.cc: Throw. * src/rational/misc/cl_RA_as.cc: Throw. * src/float/base/cl_F_err_nan.cc: Removed. * src/float/base/cl_F_nan_exception.cc: New file. * src/float/base/cl_F_err_un.cc: Removed. * src/float/base/cl_F_underflow_exception.cc: New file. * src/float/base/cl_F_err_ov.cc: Removed. * src/float/base/cl_F_overflow_exception.cc: New file. * src/float/cl_F.h (cl_error_floating_point_nan, cl_error_floating_point_overflow, cl_error_floating_point_underflow): Removed (see cln/float.h.) * src/float/sfloat/cl_SF.h: Throw. * src/float/sfloat/elem/cl_SF_div.cc: Throw. * src/float/sfloat/elem/cl_SF_from_RA.cc: Throw. * src/float/sfloat/elem/cl_SF_scale.cc: Throw. * src/float/sfloat/elem/cl_SF_scale_I.cc: Throw. * src/float/sfloat/misc/cl_SF_as.cc: Throw. * src/float/ffloat/cl_FF.h: Throw. * src/float/ffloat/conv/cl_FF_from_float.cc: Throw. * src/float/ffloat/elem/cl_FF_div.cc: Throw. * src/float/ffloat/elem/cl_FF_from_RA.cc: Throw. * src/float/ffloat/elem/cl_FF_scale.cc: Throw. * src/float/ffloat/elem/cl_FF_scale_I.cc: Throw. * src/float/ffloat/misc/cl_FF_as.cc: Throw. * src/float/dfloat/cl_DF.h: Throw. * src/float/dfloat/conv/cl_DF_from_double.cc: Throw. * src/float/dfloat/elem/cl_DF_div.cc: Throw. * src/float/dfloat/elem/cl_DF_from_RA.cc: Throw. * src/float/dfloat/elem/cl_DF_scale.cc: Throw. * src/float/dfloat/elem/cl_DF_scale_I.cc: Throw. * src/float/dfloat/misc/cl_DF_as.cc: Throw. * src/float/lfloat/algebraic/cl_LF_sqrt.cc: Throw. * src/float/lfloat/elem/cl_LF_1plus.cc: Throw. * src/float/lfloat/elem/cl_LF_I_div.cc: Throw. * src/float/lfloat/elem/cl_LF_I_mul.cc: Throw. * src/float/lfloat/elem/cl_LF_div.cc: Throw. * src/float/lfloat/elem/cl_LF_from_I.cc: Throw. * src/float/lfloat/elem/cl_LF_mul.cc: Throw. * src/float/lfloat/elem/cl_LF_scale.cc: Throw. * src/float/lfloat/elem/cl_LF_scale_I.cc: Throw. * src/float/lfloat/elem/cl_LF_square.cc: Throw. * src/float/lfloat/misc/cl_LF_as.cc: Throw. * src/float/lfloat/misc/cl_LF_shorten.cc: Throw. * src/float/lfloat/misc/cl_LF_shortenrel.cc: Throw. * src/float/lfloat/misc/cl_LF_shortenwith.cc: Throw. * src/float/input/cl_F_read.cc: Throw. * src/float/input/cl_F_read_stream.cc: Throw. * src/float/misc/cl_F_as.cc: Throw. * src/float/misc/cl_F_shortenrel.cc: Throw. * src/float/transcendental/cl_LF_coshsinh_aux.cc: Throw. * src/float/transcendental/cl_LF_cossin_aux.cc: Throw. * src/float/transcendental/cl_LF_exp_aux.cc: Throw. * src/float/transcendental/cl_LF_ratseries_a.cc: Throw. * src/float/transcendental/cl_LF_ratseries_ab.cc: Throw. * src/float/transcendental/cl_LF_ratseries_b.cc: Throw. * src/float/transcendental/cl_LF_ratseries_p.cc: Throw. * src/float/transcendental/cl_LF_ratseries_pa.cc: Throw. * src/float/transcendental/cl_LF_ratseries_pab.cc: Throw. * src/float/transcendental/cl_LF_ratseries_pb.cc: Throw. * src/float/transcendental/cl_LF_ratseries_pq.cc: Throw. * src/float/transcendental/cl_LF_ratseries_pqa.cc: Throw. * src/float/transcendental/cl_LF_ratseries_pqab.cc: Throw. * src/float/transcendental/cl_LF_ratseries_pqb.cc: Throw. * src/float/transcendental/cl_LF_ratseries_q.cc: Throw. * src/float/transcendental/cl_LF_ratseries_qa.cc: Throw. * src/float/transcendental/cl_LF_ratseries_qab.cc: Throw. * src/float/transcendental/cl_LF_ratseries_qb.cc: Throw. * src/float/transcendental/cl_LF_ratseries_stream_pq.cc: Throw. * src/float/transcendental/cl_LF_ratseries_stream_pqa.cc: Throw. * src/float/transcendental/cl_LF_ratseries_stream_pqab.cc: Throw. * src/float/transcendental/cl_LF_ratseries_stream_pqb.cc: Throw. * src/float/transcendental/cl_LF_ratsumseries_pqcd_aux.cc: Throw. * src/float/transcendental/cl_LF_ratsumseries_pqd.cc: Throw. * src/float/transcendental/cl_LF_ratsumseries_pqd_aux.cc: Throw. * src/float/transcendental/cl_LF_zeta_int.cc: Throw. * src/real/elem/cl_R_div.cc: Throw. * src/real/format-output/cl_fmt_cardinal.cc: Throw. * src/real/format-output/cl_fmt_newroman.cc: Throw. * src/real/format-output/cl_fmt_oldroman.cc: Throw. * src/real/input/cl_R_read.cc: Throw. * src/real/input/cl_R_read_stream.cc: Throw. * src/real/misc/cl_R_as.cc: Throw. * src/real/random/cl_R_random.cc: Throw. * src/real/transcendental/cl_R_atan2.cc: Throw. * src/real/transcendental/cl_R_log.cc: Throw. * src/complex/input/cl_N_read.cc: Throw. * src/complex/input/cl_N_read_stream.cc: Throw. * src/complex/misc/cl_N_as.cc: Throw. * src/complex/transcendental/cl_C_atanh_aux.cc: Throw. * src/complex/transcendental/cl_C_expt_C.cc: Throw. * src/complex/transcendental/cl_C_log.cc: Throw. * src/complex/transcendental/cl_C_log2.cc: Throw. * src/numtheory/cl_nt_cornacchia1.cc: Throw. * src/numtheory/cl_nt_cornacchia4.cc: Throw. * src/numtheory/cl_nt_isprobprime.cc: Throw. * src/numtheory/cl_nt_jacobi.cc: Throw. * src/numtheory/cl_nt_jacobi_low.cc: Throw. * src/numtheory/cl_nt_sqrtmodp.cc: Throw. * src/modinteger/cl_MI.cc: Throw. * src/modinteger/cl_MI_int.h: Throw. * src/modinteger/cl_MI_montgom.h: Throw. * src/modinteger/cl_MI_pow2.h: Throw. * src/modinteger/cl_MI_rshift.cc: Throw. * src/modinteger/cl_MI_std.h: Throw. * src/polynomial/elem/cl_UP_GF2.h: Throw. * src/polynomial/elem/cl_UP_MI.h: Throw. * src/polynomial/elem/cl_UP_gen.h: Throw. * src/polynomial/elem/cl_UP_named.cc: Throw. * src/polynomial/elem/cl_UP_no_ring.cc (uninitialized_error, uninitialized_ring): Removed (see cln/ring.h.) * src/polynomial/elem/cl_UP_number.h: Throw. * src/polynomial/elem/cl_UP_unnamed.cc: Throw. * src/vector/cl_GV_I.cc: Throw. * src/vector/cl_GV_number.cc: Throw. * tests/timediv2adic-compare.cc: Use default abort(), not cl_abort(). * tests/timeprint-compare.cc: Likewise. * tests/timerecip2adic-compare.cc: Likewise. * doc/cln.tex: Document the exception classes. * examples/contfrac.cc: Use try/catch instead of setjmp/longjmp. * INSTALL: undocument -fno-exceptions. * README: Add exceptions to list of used C++ features.
18 years ago
Extend the exponent range from 32 bits to 64 bits on selected platforms. * include/cln/number.h: Add signatures for operations with long long. * include/cln/complex_class.h: Likewise. * include/cln/real_class.h: Likewise. * include/cln/real.h: Likewise. * include/cln/rational_class.h: Likewise. * include/cln/rational.h: Likewise. * include/cln/integer_class.h: Likewise. * include/cln/integer.h: Likewise. * include/cln/float.h: Likewise. * include/cln/lfloat.h: Likewise. * include/cln/types.h (sintE and uintE): New types for exponents. * include/cln/*float.h: Use the new types for exponents. * include/cln/floatformat.h (float_format_t): Make underlying type compatible with sintE. * doc/cln.tex: Document changed float_exponent return value. * src/float/cl_F.h: Likewise. * src/float/ffloat/misc/cl_FF_exponent.cc: Likewise. * src/float/input/cl_F_read.cc: Likewise. * src/float/lfloat/cl_LF.h: Likewise. * src/float/lfloat/cl_LF_impl.h: Likewise. * src/float/lfloat/algebraic/cl_LF_sqrt.cc: Likewise. * src/float/lfloat/elem/cl_LF_1plus.cc: Likewise. * src/float/lfloat/elem/cl_LF_I_div.cc: Likewise. * src/float/lfloat/elem/cl_LF_I_mul.cc: Likewise. * src/float/lfloat/elem/cl_LF_compare.cc: Likewise. * src/float/lfloat/elem/cl_LF_div.cc: Likewise. * src/float/lfloat/elem/cl_LF_from_I.cc: Likewise. * src/float/lfloat/elem/cl_LF_fround.cc: Likewise. * src/float/lfloat/elem/cl_LF_ftrunc.cc: Likewise. * src/float/lfloat/elem/cl_LF_futrunc.cc: Likewise. * src/float/lfloat/elem/cl_LF_mul.cc: Likewise. * src/float/lfloat/elem/cl_LF_scale.cc: Likewise. * src/float/lfloat/elem/cl_LF_scale_I.cc: Likewise. * src/float/lfloat/elem/cl_LF_square.cc: Likewise. * src/float/lfloat/elem/cl_LF_to_I.cc: Likewise. * src/float/lfloat/misc/cl_LF_decode.cc: Likewise. * src/float/lfloat/misc/cl_LF_exponent.cc: Likewise. * src/float/lfloat/misc/cl_LF_idecode.cc: Likewise. * src/float/lfloat/misc/cl_LF_shortenrel.cc: Likewise. * src/float/lfloat/misc/cl_LF_shortenwith.cc: Likewise. * src/float/misc/cl_F_decode.cc: Likewise. * src/float/misc/cl_F_exponent.cc: Likewise. * src/float/misc/cl_F_shortenrel.cc: Likewise. * src/float/misc/cl_float_format.cc: Likewise. * src/float/output/cl_F_dprint.cc: Likewise. * src/float/sfloat/misc/cl_SF_exponent.cc: Likewise. * src/float/transcendental/cl_F_atanhx.cc: Likewise. * src/float/transcendental/cl_F_atanx.cc: Likewise. * src/float/transcendental/cl_F_cosh.cc: Likewise. * src/float/transcendental/cl_F_expx.cc: Likewise. * src/float/transcendental/cl_F_lnx.cc: Likewise. * src/float/transcendental/cl_F_sinhx.cc: Likewise. * src/float/transcendental/cl_F_sinx.cc: Likewise. * src/float/transcendental/cl_LF_pi.cc: Likewise. * src/integer/cl_I.h: Likewise. * src/complex/algebraic/cl_LF_hypot.cc: Likewise. * src/complex/elem/division/cl_C_LF_recip.cc: Likewise. * src/float/dfloat/misc/cl_DF_exponent.cc: Likewise. * src/integer/conv/cl_I_from_Q2.cc: Added. * src/base/cl_low.h (isqrtC): New function, for 64 bit falls back to... * src/base/low/cl_low_isqrt.cc (isqrt): ...this new implementation. * src/base/cl_macros.h (bitc): Make sure 64 bit is used if required by exponent operations. * examples/pi.cc: Support more than 646456614 decimal digits.
18 years ago
Extend the exponent range from 32 bits to 64 bits on selected platforms. * include/cln/number.h: Add signatures for operations with long long. * include/cln/complex_class.h: Likewise. * include/cln/real_class.h: Likewise. * include/cln/real.h: Likewise. * include/cln/rational_class.h: Likewise. * include/cln/rational.h: Likewise. * include/cln/integer_class.h: Likewise. * include/cln/integer.h: Likewise. * include/cln/float.h: Likewise. * include/cln/lfloat.h: Likewise. * include/cln/types.h (sintE and uintE): New types for exponents. * include/cln/*float.h: Use the new types for exponents. * include/cln/floatformat.h (float_format_t): Make underlying type compatible with sintE. * doc/cln.tex: Document changed float_exponent return value. * src/float/cl_F.h: Likewise. * src/float/ffloat/misc/cl_FF_exponent.cc: Likewise. * src/float/input/cl_F_read.cc: Likewise. * src/float/lfloat/cl_LF.h: Likewise. * src/float/lfloat/cl_LF_impl.h: Likewise. * src/float/lfloat/algebraic/cl_LF_sqrt.cc: Likewise. * src/float/lfloat/elem/cl_LF_1plus.cc: Likewise. * src/float/lfloat/elem/cl_LF_I_div.cc: Likewise. * src/float/lfloat/elem/cl_LF_I_mul.cc: Likewise. * src/float/lfloat/elem/cl_LF_compare.cc: Likewise. * src/float/lfloat/elem/cl_LF_div.cc: Likewise. * src/float/lfloat/elem/cl_LF_from_I.cc: Likewise. * src/float/lfloat/elem/cl_LF_fround.cc: Likewise. * src/float/lfloat/elem/cl_LF_ftrunc.cc: Likewise. * src/float/lfloat/elem/cl_LF_futrunc.cc: Likewise. * src/float/lfloat/elem/cl_LF_mul.cc: Likewise. * src/float/lfloat/elem/cl_LF_scale.cc: Likewise. * src/float/lfloat/elem/cl_LF_scale_I.cc: Likewise. * src/float/lfloat/elem/cl_LF_square.cc: Likewise. * src/float/lfloat/elem/cl_LF_to_I.cc: Likewise. * src/float/lfloat/misc/cl_LF_decode.cc: Likewise. * src/float/lfloat/misc/cl_LF_exponent.cc: Likewise. * src/float/lfloat/misc/cl_LF_idecode.cc: Likewise. * src/float/lfloat/misc/cl_LF_shortenrel.cc: Likewise. * src/float/lfloat/misc/cl_LF_shortenwith.cc: Likewise. * src/float/misc/cl_F_decode.cc: Likewise. * src/float/misc/cl_F_exponent.cc: Likewise. * src/float/misc/cl_F_shortenrel.cc: Likewise. * src/float/misc/cl_float_format.cc: Likewise. * src/float/output/cl_F_dprint.cc: Likewise. * src/float/sfloat/misc/cl_SF_exponent.cc: Likewise. * src/float/transcendental/cl_F_atanhx.cc: Likewise. * src/float/transcendental/cl_F_atanx.cc: Likewise. * src/float/transcendental/cl_F_cosh.cc: Likewise. * src/float/transcendental/cl_F_expx.cc: Likewise. * src/float/transcendental/cl_F_lnx.cc: Likewise. * src/float/transcendental/cl_F_sinhx.cc: Likewise. * src/float/transcendental/cl_F_sinx.cc: Likewise. * src/float/transcendental/cl_LF_pi.cc: Likewise. * src/integer/cl_I.h: Likewise. * src/complex/algebraic/cl_LF_hypot.cc: Likewise. * src/complex/elem/division/cl_C_LF_recip.cc: Likewise. * src/float/dfloat/misc/cl_DF_exponent.cc: Likewise. * src/integer/conv/cl_I_from_Q2.cc: Added. * src/base/cl_low.h (isqrtC): New function, for 64 bit falls back to... * src/base/low/cl_low_isqrt.cc (isqrt): ...this new implementation. * src/base/cl_macros.h (bitc): Make sure 64 bit is used if required by exponent operations. * examples/pi.cc: Support more than 646456614 decimal digits.
18 years ago
19 years ago
24 years ago
24 years ago
24 years ago
24 years ago
24 years ago
25 years ago
25 years ago
25 years ago
  1. 2008-01-dd, version 1.2.0
  2. =========================
  3. Algorithmic changes
  4. -------------------
  5. * Save big amounts of memory in computation of some constants by:
  6. - Avoiding pre-computation of series terms and instead computing them in a
  7. streamed way.
  8. - Avoiding computation with excess precision in binary splitting algorithm
  9. by coercion of intermediate integer values to floating-point as early as
  10. possible.
  11. Implementation changes
  12. ----------------------
  13. * Added support for huge numbers:
  14. - intC used for all counter loops.
  15. - intE is now a 64-bit type on all 64-bit platforms and even on selected
  16. 32-bit platforms.
  17. * CLN now uses C++ exceptions for error handling.
  18. * Fixed a bug on i386 where comparing Z/2Z ring zeros returnd random results.
  19. * Removed cl_boolean. Use built-in C++ bool instead.
  20. Other changes
  21. -------------
  22. * Dropped the cln-config script. Please use pkg-config instead.
  23. * Updated infrastructure to that of libtool-1.5.24.
  24. * Changed encoding of all files to UTF-8.
  25. 2006-08-08, version 1.1.13
  26. ==========================
  27. * Compilation fixes for 64-bit brokenness introduced in last release.
  28. 2006-08-06, version 1.1.12
  29. ==========================
  30. Implementation changes
  31. ----------------------
  32. * Fix rare assertion when printing quite large floats.
  33. Other changes
  34. -------------
  35. * Compilation fixes for several platforms: *BSD, Intel Mac, and MinGW.
  36. 2005-11-23, version 1.1.11
  37. ==========================
  38. Algorithmic changes
  39. -------------------
  40. * Considerably improved performance of number input.
  41. 2005-10-22, version 1.1.10
  42. ==========================
  43. Implementation changes
  44. ----------------------
  45. * Removed the vptr of modular integer and univariate polynomial
  46. classes in order to fix some crashes in that sector of CLN. Code
  47. using this needs to be recompiled.
  48. * Many more operator signatures make the integration of CLN types with
  49. float/double easier.
  50. Other changes
  51. -------------
  52. * Several compilation fixes.
  53. * Made it possible to cross-compile CLN.
  54. 2004-11-03, version 1.1.9
  55. =========================
  56. Algorithmic changes
  57. -------------------
  58. * Input of numbers in bases 2, 4, 8, 16 and 32 is now done in linear bit
  59. complexity as opposed to O(N^2). Useful for all kinds of persistency.
  60. Implementation changes
  61. ----------------------
  62. * Fixed several bugs in the integer input and output routines that could be
  63. blamed for random crashes in the following cases: output in base 32 for
  64. quite large numbers, input in base 2 for fixnums and input in base 3 for
  65. fixnums on a 64 bit target.
  66. * Fixed crash when radix specifiers were used in input streams.
  67. * Speed up on x86_64 and ia64 by adding some inline assembly.
  68. Other changes
  69. -------------
  70. * Fixes for compilation on MacOS X and little endian Mips.
  71. 2004-07-01, version 1.1.8
  72. =========================
  73. Implementation changes
  74. ----------------------
  75. * Fix bug in log(a,b) when b is 1/n.
  76. * Fix crash in shared library on AMD64.
  77. Other changes
  78. -------------
  79. * Fixes for some language conformance issues.
  80. 2004-05-02, version 1.1.7
  81. =========================
  82. Implementation changes
  83. ----------------------
  84. * Fixed two corner case bugs in cl_LF multiplication and sqrt.
  85. * Workaround GCC 3.[123] compiler bug.
  86. * Parallel build should work reliably now.
  87. 2004-01-01, version 1.1.6
  88. =========================
  89. Functional changes
  90. ------------------
  91. * New function
  92. `sintL ldegree(const cl_UP& x)'.
  93. (Suggested by Munagala Ramanath.)
  94. Implementation changes
  95. ----------------------
  96. * Fixed a bug in polynomial subtraction.
  97. (Reported by Munagala Ramanath.)
  98. Other changes
  99. -------------
  100. * Provide a package control file cln.pc.
  101. * Updated infrastructure to autoconf-2.57.
  102. * Fixed compilation issues with GCC-3.4 prereleases and on Mac OSX.
  103. 2002-05-28, version 1.1.5
  104. =========================
  105. Other changes
  106. -------------
  107. * Fix compilation issues with GCC-3.1.
  108. 2002-01-04, version 1.1.4
  109. =========================
  110. Other changes
  111. -------------
  112. * Fix compilation issues with GMP-4.0 and on IBM s390.
  113. * Updated infrastructure to autoconf-2.52.
  114. 2001-11-05, version 1.1.3
  115. =========================
  116. Implementation changes
  117. ----------------------
  118. * Fix a computation error of sin and sinh for small arguments.
  119. (Reported by Christopher Kennedy.)
  120. * Module ordering works with gcc-3.0 -fuse-cxa-atexit now.
  121. * -DNO_ASM works properly on Sparc.
  122. 2001-07-25, version 1.1.2
  123. Implementation changes
  124. ----------------------
  125. * Minor cleanups and portability issues.
  126. (No need to upgrade if you have been happy so far.)
  127. 2001-05-31, version 1.1.1
  128. =========================
  129. Implementation changes
  130. ----------------------
  131. * Minor cleanups for GCC 3.0 and libstdc++-v3.
  132. * Fixes several little bugs and portability issues.
  133. 2000-12-14, version 1.1.0
  134. =========================
  135. Functional changes
  136. ------------------
  137. * ISO/IEC 14882 fashion adjustments:
  138. Put everything into namespace cln. All fundamental data types still
  139. carry their old names. Other non-macro identifiers are now written as
  140. cln::foo instead of cl_foo, except where the cl_ comes from a data type
  141. (as in cl_I_to_int()). Headers are installed into a separate
  142. directory, #include <cln/foo.h> instead of <cl_foo.h>. Applications
  143. must be manually ported to the new style. We apologize for the
  144. inconvenience.
  145. Implementation changes
  146. ----------------------
  147. * Removed internal copy of mpn subdirectory tree from libgmp-2.0.2.
  148. Configuring with --with-gmp now relies on an installed libgmp library
  149. version 3 or above. We recommend libgmp-3.1 or newer.
  150. * Adjusted several break-even points to make better use of a faster libgmp and
  151. better match present-day CPUs.
  152. * Fix several errors for architectures with 64-bit wide words.
  153. (Others than Alpha, which worked already.)
  154. * Fix compilation errors with current GCC-3.0 snapshots.
  155. Other changes
  156. -------------
  157. * Added package tools: script cln-config and autoconf macro AC_PATH_CLN
  158. (in file cln.m4).
  159. 2000-01-13, version 1.0.3
  160. =========================
  161. Functional changes
  162. ------------------
  163. * New function
  164. `cl_I doublefactorial (uintL n)'.
  165. Implementation changes
  166. ----------------------
  167. * Fix several little configuration errors.
  168. * Fix some compilation errors with gcc-2.96 prereleases.
  169. 1999-09-07, version 1.0.2
  170. =========================
  171. Functional changes
  172. ------------------
  173. * New functions
  174. `cl_I numerator (const cl_RA&)'
  175. `cl_I denominator (const cl_RA&)'.
  176. Suggested by Richard Kreckel and Sylvain Pion.
  177. * New function `cl_equal_hashcode' for the classes cl_N, cl_R, cl_RA, cl_I,
  178. cl_F, cl_SF, cl_FF, cl_DF, cl_LF.
  179. Suggested by Richard Kreckel.
  180. Implementation changes
  181. ----------------------
  182. * Fix an endless loop when either of the functions
  183. `cl_boolean rootp (const cl_RA&, uintL, cl_RA*)',
  184. `cl_boolean rootp (const cl_RA&, const cl_I&, cl_RA*)'
  185. was called with an integer argument. Thanks to Richard Kreckel.
  186. * Fix a bug in the addition and subtraction of rational numbers which could
  187. cause unnormalized rational numbers like 3/1 to be created.
  188. 1999-06-09, version 1.0.1
  189. =========================
  190. Algorithmic changes
  191. -------------------
  192. * Speed up the functions `logand', `lognand', `logandc2'.
  193. Implementation changes
  194. ----------------------
  195. * Fix compilation errors with gcc-2.7.2, egcs-1.1.2 and gcc-2.95.
  196. * Fix compilation errors on HPPA, MIPS, some versions of DEC Alpha, OpenBSD,
  197. and SPARC with LiDIA.
  198. * Fix compilation errors on Win32. Thanks to Mumit Khan.
  199. 1999-01-12, version 1.0
  200. =======================
  201. Functional changes
  202. ------------------
  203. * New include files, containing I/O functions:
  204. <cl_integer_io.h>
  205. <cl_rational_io.h>
  206. <cl_float_io.h>
  207. <cl_sfloat_io.h> <cl_ffloat_io.h> <cl_dfloat_io.h> <cl_lfloat_io.h>
  208. <cl_real_io.h>
  209. <cl_complex_io.h>
  210. The file <cl_io.h> now contains only I/O functions for characters and
  211. C integers.
  212. * To access the base ring of a univariate polynomial ring, now use
  213. `R->basering()' instead of `R->basering'.
  214. * Implement `plusp', `max', `min' for the classes cl_F, cl_SF, cl_FF, cl_DF,
  215. cl_LF, cl_RA, cl_I.
  216. * Implement `abs' for the class cl_RA.
  217. * Replaced `read_number' with specialized functions `read_complex',
  218. `read_real', `read_float', `read_rational', `read_integer'.
  219. * Replaced the functions
  220. `void fprint (cl_ostream stream, int x)'
  221. `void fprint (cl_ostream stream, unsigned int x)'
  222. `void fprint (cl_ostream stream, long x)'
  223. `void fprint (cl_ostream stream, unsigned long x)'
  224. with
  225. `void fprintdecimal (cl_ostream stream, int x)'
  226. `void fprintdecimal (cl_ostream stream, unsigned int x)'
  227. `void fprintdecimal (cl_ostream stream, long x)'
  228. `void fprintdecimal (cl_ostream stream, unsigned long x)'
  229. Algorithmic changes
  230. -------------------
  231. * The function `cl_I xgcd (const cl_I& a, const cl_I& b, cl_I* u, cl_I* v)'
  232. now normalizes the resulting u and v to be of minimum absolute value.
  233. (Suggested by the LiDIA group.)
  234. * The conversion from string to cl_F, cl_R, cl_N now chooses the format of
  235. the resulting float depending on the number of significant digits present
  236. in the input string.
  237. * Speed up the functions
  238. `cl_R operator* (const cl_RA&, const cl_LF&)'
  239. `cl_R operator* (const cl_LF&, const cl_RA&)'
  240. `cl_R operator/ (const cl_RA&, const cl_LF&)'
  241. `cl_LF operator/ (const cl_LF&, const cl_RA&)'
  242. Implementation changes
  243. ----------------------
  244. * Fix for `cl_I ash (const cl_I& x, const cl_I& n)' when |n| is between
  245. 2^29 and 2^37.
  246. (Reported by Thomas Papanikolaou.)
  247. * Fixed a memory leak in the long-float truncate function.
  248. (Reported by Keith Briggs.)
  249. * Fixed a memory leak in the modular integer exponentiation.
  250. * Reduced the stack space consumption. The default stack size (typically
  251. 8 MB on Unix) should now be sufficient in order to run all CLN programs.
  252. * Portability fixes for m68k platforms.
  253. (Reported and fixed by Roman Hodek.)
  254. Other changes
  255. -------------
  256. * Restructured the sources. The subpackages
  257. - base
  258. - base + integer
  259. - base + integer + rational
  260. - base + integer + rational + float
  261. - base + integer + rational + float + real
  262. - base + integer + rational + float + real + complex
  263. - base + integer + modinteger
  264. are now self-contained.
  265. * The configuration script can be called with option `--enable-shared',
  266. to build CLN as a shared library.
  267. * Updated the LiDIA interface.
  268. 1998-05-07, version 0.98
  269. ========================
  270. Implementation changes
  271. ----------------------
  272. * Portability fixes for 64-bit platforms like DEC Alpha.
  273. (Reported by John Cremona and Thomas Papanikolaou.)
  274. 1998-02-27
  275. ==========
  276. Other changes
  277. -------------
  278. * Portability fixes for new ISO/ANSI C++ compilers.
  279. * Updated the LiDIA interface for LiDIA version 1.3 and fixed a couple of
  280. bugs.
  281. 1997-09-06
  282. ==========
  283. Implementation changes
  284. ----------------------
  285. * Portability fix for i686 platforms.
  286. (Reported by Michael Pfeifer.)
  287. 1997-09-01
  288. ==========
  289. Functional changes
  290. ------------------
  291. * New include files:
  292. <cl_ring.h>, declaring general rings,
  293. <cl_GV.h>, <cl_SV.h>, defining vectors,
  294. <cl_univpoly.h>, defining univariate polynomial rings.
  295. Algorithmic changes
  296. -------------------
  297. * Speed up the internal computation of ln(2) and ln(10) by about 20%.
  298. * Speed up the computation of exp (for 1000 digits or more) by about 10%.
  299. Implementation changes
  300. ----------------------
  301. * Portability fix for 64-bit platforms like DEC Alpha:
  302. Fixed a bug: endless loop in `sqrt' for large precision.
  303. (Reported by Blake Jones.)
  304. * Portability fix for RS/6000 platforms.
  305. 1997-02-21
  306. ==========
  307. Algorithmic changes
  308. -------------------
  309. * Speed up the computation of the elementary transcendental functions:
  310. exp, sinh, cosh, asinh, atanh (for 100 digits) by about 30%,
  311. log (for 100 digits) by about 25%,
  312. sin, cos (for 1000 or 10000 digits) by about 20%,
  313. asin, acos, atan (for 1000 digits) by about 25%.
  314. Implementation changes
  315. ----------------------
  316. * Portability fix for SunOS 4 and other BSD platforms.
  317. 1997-01-31
  318. ==========
  319. Algorithmic changes
  320. -------------------
  321. * Fixed a bug: endless recursion in `cl_boolean sqrtp (const cl_RA&, cl_RA*)'.
  322. * Fixed a bug: Only the first 85% of the digits returned by `cl_eulerconst'
  323. for moderate precision (< 11370 digits) were correct.
  324. (Reported by Thomas Papanikolaou.)
  325. Implementation changes
  326. ----------------------
  327. * Fix static initialization order bug. Requires g++ 2.7.0 or newer
  328. (g++ 2.8.0 or newer on HPPA).
  329. * New method `debug_print()', for pretty printing of CLN objects, intended
  330. to be called from the debugger.
  331. 1997-01-07
  332. ==========
  333. Functional changes
  334. ------------------
  335. * New functions `float cl_float_approx (const cl_R&)',
  336. `double cl_double_approx (const cl_R&)'
  337. for converting a real number to a C `float' or `double'.
  338. Algorithmic changes
  339. -------------------
  340. * Speed up `cl_zeta' using Cohen-Villegas-Zagier convergence acceleration.
  341. Implementation changes
  342. ----------------------
  343. * New function `cl_print', for pretty printing of CLN objects, intended to be
  344. called from the debugger.
  345. * Portability fixes for 64-bit platforms like DEC Alpha.
  346. 1996-11-29
  347. ==========
  348. Functional changes
  349. ------------------
  350. * New include files:
  351. <cl_string.h>, defining strings,
  352. <cl_symbol.h>, defining symbols,
  353. <cl_proplist.h>, defining property lists,
  354. <cl_condition.h>, defining conditions/exceptions.
  355. * New functions `cl_F cl_catalanconst ()',
  356. `cl_F cl_catalanconst (const cl_F&)',
  357. `cl_F cl_catalanconst (cl_float_format_t)'
  358. which return Catalan's constant.
  359. (Suggested by Thomas Papanikolaou.)
  360. * New functions `cl_F cl_zeta (int s)',
  361. `cl_F cl_zeta (int s, const cl_F&)',
  362. `cl_F cl_zeta (int s, cl_float_format_t)'
  363. which return the Riemann zeta function at an integral point s>1.
  364. * New functions `cl_F cl_exp1 ()',
  365. `cl_F cl_exp1 (const cl_F&)',
  366. `cl_F cl_exp1 (cl_float_format_t)'
  367. which return e = exp(1).
  368. * New function `cl_I binomial (uintL n, uintL k)' which returns the
  369. binomial coefficient (n choose k).
  370. * New functions `int cl_I_to_int (const cl_I&)',
  371. `unsigned int cl_I_to_uint (const cl_I&)',
  372. `long cl_I_to_long (const cl_I&)',
  373. `unsigned long cl_I_to_ulong (const cl_I&)'
  374. for converting an integer to a C `int' or `long'.
  375. * New functions `float cl_float_approx (const cl_I&)',
  376. `float cl_float_approx (const cl_RA&)',
  377. `double cl_double_approx (const cl_I&)',
  378. `double cl_double_approx (const cl_RA&)'
  379. for converting a rational number to a C `float' or `double'.
  380. Implementation changes
  381. ----------------------
  382. * Moved the sources to subdirectories.
  383. (Suggested by Jörg Arndt.)
  384. Other changes
  385. -------------
  386. * New benchmark for better comparing LiDIA, Pari and CLN.
  387. * Added an interface to LiDIA, allows using CLN as a replacement of libI.
  388. (Suggested by Thomas Papanikolaou.)
  389. * Added an ILOG Talk interface, for interactive use of the library.
  390. 1996-10-13
  391. ==========
  392. Functional changes
  393. ------------------
  394. * New include file <cl_modinteger.h>, defining modular integer rings.
  395. * New functions `cl_F cl_eulerconst ()', `cl_F cl_eulerconst (const cl_F&)',
  396. `cl_F cl_eulerconst (cl_float_format_t)' which return Euler's constant.
  397. Algorithmic changes
  398. -------------------
  399. * Speed up square root of large numbers by use of Newton's algorithm.
  400. * Speed up multiplication and division of large long-floats by small integers.
  401. * Speed up the computation of pi, e, exp, log, sin, cos, tan, sinh, cosh, tanh,
  402. asin, acos, atan, asinh, acosh, atanh.
  403. All of them are now computed with asymptotically fast algorithms, of
  404. bit complexity O(log(N)^2*M(N)) = O(N^(1+epsilon)) for N digits.
  405. * Fixed several bugs in the transcendental functions routines. In particular,
  406. the `log' function went into an endless loop.
  407. * Fixed a bug: The cl_I -> cl_DF and cl_I -> cl_LF conversions didn't work
  408. correctly for negative integers.
  409. 1996-09-08
  410. ==========
  411. Functional changes
  412. ------------------
  413. * New include file <cl_numtheory.h>, containing number theoretic functions,
  414. for now only the Jacobi symbol.
  415. Algorithmic changes
  416. -------------------
  417. * Speed up squaring of large numbers by 30%.
  418. * Speed up division of large numbers by use of Newton's algorithm. The
  419. improvement is noticeable for numbers with at least about 1000 words =
  420. 32000 bits = 10000 decimal digits.
  421. * Speed up the binary-to-decimal conversion of large numbers by use of
  422. a divide-and-conquer method. The improvement is noticeable for numbers
  423. of at least 1250 words = 40000 bits = 12000 decimal digits.
  424. * Fixed a bug: The functions `cl_boolean minusp (const type&)' and
  425. `cl_boolean zerop (const type&)' were missing for type=cl_I and type=cl_RA.
  426. * Fixed a bug: The function `cl_boolean logtest (const cl_I&, const cl_I&)'
  427. didn't work correctly if both arguments were bignums.
  428. * Fixed a bug: The function `cl_I mod (const cl_I&, const cl_I&)', when called
  429. as `mod(-n*m,m)' (n>0), returned m instead of 0.
  430. * Fixed a bug: The function `uintL power2p (const cl_I&)' returned wrong
  431. values for arguments x = 2^n, n >= 29.
  432. Implementation changes
  433. ----------------------
  434. * Speed up CLN by using the low-level addition/subtraction, shift and
  435. multiplication loops from GNU gmp-2.0.2.
  436. * Fixed a severe reference counting bug in the constructors
  437. `type::type (const long)' and `type::type (const unsigned long)'
  438. for type=cl_number, type=cl_N, type=cl_RA, type=cl_I that most often
  439. caused a core dump.
  440. * CLN's word sequences can be chosen to be stored big-endian in memory
  441. (like it was up to now) or little-endian (needed for interfacing to GMP).
  442. 1996-05-20
  443. ==========
  444. Functional changes
  445. ------------------
  446. * New include file <cl_timing.h>, contains timing facilities.
  447. Algorithmic changes
  448. -------------------
  449. * Speed up the multiplication of large numbers by use of an FFT based
  450. algorithm (Schönhage-Strassen). The improvement is noticeable when both
  451. factors have at least 1250 words = 40000 bits = 12000 decimal digits.
  452. * Speed up the functions `cl_I gcd (const cl_I&, const cl_I&)' and
  453. `cl_I xgcd (const cl_I&, const cl_I&, cl_I*, cl_I*)' by a factor
  454. of 1.5. Simple trick.
  455. * Speed up the function `cl_boolean sqrtp (const cl_I&, cl_I*)' using a
  456. trick from Henri Cohen.
  457. * Fixed an endless loop in the function `uint32 gcd (uint32, uint32)'
  458. which occurred when one of the arguments is zero.
  459. * Fixed an endless loop in the function `cl_I factorial (uintL)'.
  460. Implementation changes
  461. ----------------------
  462. * <cl_io.h> now uses iostreams by default instead of stdio FILE pointers.
  463. (Reported by Tito Flagella.)
  464. * Fixed linking error when compiling without -O.
  465. (Reported by Tito Flagella.)
  466. * Fixed syntax error in <cl_input.h>.
  467. (Reported by Tito Flagella.)
  468. * Fixed syntax errors in src/cl_DS.h and src/cl_FF_plus.h.
  469. (Reported by Marcus Daniels.)
  470. * More portability fixes.
  471. * Configuration now supports the --srcdir option.
  472. (Reported by Marcus Daniels.)
  473. 1996-01-03
  474. ==========
  475. * Compiles well on Sparc, using gcc.
  476. * Mail to beta testers.
  477. 1995-12-06
  478. ==========
  479. * Compiles well on Linux, using gcc.