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.

719 lines
18 KiB

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
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. 2007-mm-dd, version 1.2.0
  2. =========================
  3. Implementation changes
  4. ----------------------
  5. * Added support for huge numbers...
  6. * CLN now uses C++ exceptions for error handling.
  7. * Removed cl_boolean. Use built-in C++ bool instead.
  8. * Dropped the cln-config script. Please use pkg-config instead.
  9. Algorithmic changes
  10. -------------------
  11. * Save a lot of memory during computation of some constants.
  12. 2006-08-08, version 1.1.13
  13. ==========================
  14. * Compilation fixes for 64-bit brokenness introduced in last release.
  15. 2006-08-06, version 1.1.12
  16. ==========================
  17. Implementation changes
  18. ----------------------
  19. * Fix rare assertion when printing quite large floats.
  20. Other changes
  21. -------------
  22. * Compilation fixes for several platforms: *BSD, Intel Mac, and MinGW.
  23. 2005-11-23, version 1.1.11
  24. ==========================
  25. Algorithmic changes
  26. -------------------
  27. * Considerably improved performance of number input.
  28. 2005-10-22, version 1.1.10
  29. ==========================
  30. Implementation changes
  31. ----------------------
  32. * Removed the vptr of modular integer and univariate polynomial
  33. classes in order to fix some crashes in that sector of CLN. Code
  34. using this needs to be recompiled.
  35. * Many more operator signatures make the integration of CLN types with
  36. float/double easier.
  37. Other changes
  38. -------------
  39. * Several compilation fixes.
  40. * Made it possible to cross-compile CLN.
  41. 2004-11-03, version 1.1.9
  42. =========================
  43. Algorithmic changes
  44. -------------------
  45. * Input of numbers in bases 2, 4, 8, 16 and 32 is now done in linear bit
  46. complexity as opposed to O(N^2). Useful for all kinds of persistency.
  47. Implementation changes
  48. ----------------------
  49. * Fixed several bugs in the integer input and output routines that could be
  50. blamed for random crashes in the following cases: output in base 32 for
  51. quite large numbers, input in base 2 for fixnums and input in base 3 for
  52. fixnums on a 64 bit target.
  53. * Fixed crash when radix specifiers were used in input streams.
  54. * Speed up on x86_64 and ia64 by adding some inline assembly.
  55. Other changes
  56. -------------
  57. * Fixes for compilation on MacOS X and little endian Mips.
  58. 2004-07-01, version 1.1.8
  59. =========================
  60. Implementation changes
  61. ----------------------
  62. * Fix bug in log(a,b) when b is 1/n.
  63. * Fix crash in shared library on AMD64.
  64. Other changes
  65. -------------
  66. * Fixes for some language conformance issues.
  67. 2004-05-02, version 1.1.7
  68. =========================
  69. Implementation changes
  70. ----------------------
  71. * Fixed two corner case bugs in cl_LF multiplication and sqrt.
  72. * Workaround GCC 3.[123] compiler bug.
  73. * Parallel build should work reliably now.
  74. 2004-01-01, version 1.1.6
  75. =========================
  76. Functional changes
  77. ------------------
  78. * New function
  79. `sintL ldegree(const cl_UP& x)'.
  80. (Suggested by Munagala Ramanath.)
  81. Implementation changes
  82. ----------------------
  83. * Fixed a bug in polynomial subtraction.
  84. (Reported by Munagala Ramanath.)
  85. Other changes
  86. -------------
  87. * Provide a package control file cln.pc.
  88. * Updated infrastructure to autoconf-2.57.
  89. * Fixed compilation issues with GCC-3.4 prereleases and on Mac OSX.
  90. 2002-05-28, version 1.1.5
  91. =========================
  92. Other changes
  93. -------------
  94. * Fix compilation issues with GCC-3.1.
  95. 2002-01-04, version 1.1.4
  96. =========================
  97. Other changes
  98. -------------
  99. * Fix compilation issues with GMP-4.0 and on IBM s390.
  100. * Updated infrastructure to autoconf-2.52.
  101. 2001-11-05, version 1.1.3
  102. =========================
  103. Implementation changes
  104. ----------------------
  105. * Fix a computation error of sin and sinh for small arguments.
  106. (Reported by Christopher Kennedy.)
  107. * Module ordering works with gcc-3.0 -fuse-cxa-atexit now.
  108. * -DNO_ASM works properly on Sparc.
  109. 2001-07-25, version 1.1.2
  110. Implementation changes
  111. ----------------------
  112. * Minor cleanups and portability issues.
  113. (No need to upgrade if you have been happy so far.)
  114. 2001-05-31, version 1.1.1
  115. =========================
  116. Implementation changes
  117. ----------------------
  118. * Minor cleanups for GCC 3.0 and libstdc++-v3.
  119. * Fixes several little bugs and portability issues.
  120. 2000-12-14, version 1.1.0
  121. =========================
  122. Functional changes
  123. ------------------
  124. * ISO/IEC 14882 fashion adjustments:
  125. Put everything into namespace cln. All fundamental data types still
  126. carry their old names. Other non-macro identifiers are now written as
  127. cln::foo instead of cl_foo, except where the cl_ comes from a data type
  128. (as in cl_I_to_int()). Headers are installed into a separate
  129. directory, #include <cln/foo.h> instead of <cl_foo.h>. Applications
  130. must be manually ported to the new style. We apologize for the
  131. inconvenience.
  132. Implementation changes
  133. ----------------------
  134. * Removed internal copy of mpn subdirectory tree from libgmp-2.0.2.
  135. Configuring with --with-gmp now relies on an installed libgmp library
  136. version 3 or above. We recommend libgmp-3.1 or newer.
  137. * Adjusted several break-even points to make better use of a faster libgmp and
  138. better match present-day CPUs.
  139. * Fix several errors for architectures with 64-bit wide words.
  140. (Others than Alpha, which worked already.)
  141. * Fix compilation errors with current GCC-3.0 snapshots.
  142. Other changes
  143. -------------
  144. * Added package tools: script cln-config and autoconf macro AC_PATH_CLN
  145. (in file cln.m4).
  146. 2000-01-13, version 1.0.3
  147. =========================
  148. Functional changes
  149. ------------------
  150. * New function
  151. `cl_I doublefactorial (uintL n)'.
  152. Implementation changes
  153. ----------------------
  154. * Fix several little configuration errors.
  155. * Fix some compilation errors with gcc-2.96 prereleases.
  156. 1999-09-07, version 1.0.2
  157. =========================
  158. Functional changes
  159. ------------------
  160. * New functions
  161. `cl_I numerator (const cl_RA&)'
  162. `cl_I denominator (const cl_RA&)'.
  163. Suggested by Richard Kreckel and Sylvain Pion.
  164. * New function `cl_equal_hashcode' for the classes cl_N, cl_R, cl_RA, cl_I,
  165. cl_F, cl_SF, cl_FF, cl_DF, cl_LF.
  166. Suggested by Richard Kreckel.
  167. Implementation changes
  168. ----------------------
  169. * Fix an endless loop when either of the functions
  170. `cl_boolean rootp (const cl_RA&, uintL, cl_RA*)',
  171. `cl_boolean rootp (const cl_RA&, const cl_I&, cl_RA*)'
  172. was called with an integer argument. Thanks to Richard Kreckel.
  173. * Fix a bug in the addition and subtraction of rational numbers which could
  174. cause unnormalized rational numbers like 3/1 to be created.
  175. 1999-06-09, version 1.0.1
  176. =========================
  177. Algorithmic changes
  178. -------------------
  179. * Speed up the functions `logand', `lognand', `logandc2'.
  180. Implementation changes
  181. ----------------------
  182. * Fix compilation errors with gcc-2.7.2, egcs-1.1.2 and gcc-2.95.
  183. * Fix compilation errors on HPPA, MIPS, some versions of DEC Alpha, OpenBSD,
  184. and SPARC with LiDIA.
  185. * Fix compilation errors on Win32. Thanks to Mumit Khan.
  186. 1999-01-12, version 1.0
  187. =======================
  188. Functional changes
  189. ------------------
  190. * New include files, containing I/O functions:
  191. <cl_integer_io.h>
  192. <cl_rational_io.h>
  193. <cl_float_io.h>
  194. <cl_sfloat_io.h> <cl_ffloat_io.h> <cl_dfloat_io.h> <cl_lfloat_io.h>
  195. <cl_real_io.h>
  196. <cl_complex_io.h>
  197. The file <cl_io.h> now contains only I/O functions for characters and
  198. C integers.
  199. * To access the base ring of a univariate polynomial ring, now use
  200. `R->basering()' instead of `R->basering'.
  201. * Implement `plusp', `max', `min' for the classes cl_F, cl_SF, cl_FF, cl_DF,
  202. cl_LF, cl_RA, cl_I.
  203. * Implement `abs' for the class cl_RA.
  204. * Replaced `read_number' with specialized functions `read_complex',
  205. `read_real', `read_float', `read_rational', `read_integer'.
  206. * Replaced the functions
  207. `void fprint (cl_ostream stream, int x)'
  208. `void fprint (cl_ostream stream, unsigned int x)'
  209. `void fprint (cl_ostream stream, long x)'
  210. `void fprint (cl_ostream stream, unsigned long x)'
  211. with
  212. `void fprintdecimal (cl_ostream stream, int x)'
  213. `void fprintdecimal (cl_ostream stream, unsigned int x)'
  214. `void fprintdecimal (cl_ostream stream, long x)'
  215. `void fprintdecimal (cl_ostream stream, unsigned long x)'
  216. Algorithmic changes
  217. -------------------
  218. * The function `cl_I xgcd (const cl_I& a, const cl_I& b, cl_I* u, cl_I* v)'
  219. now normalizes the resulting u and v to be of minimum absolute value.
  220. (Suggested by the LiDIA group.)
  221. * The conversion from string to cl_F, cl_R, cl_N now chooses the format of
  222. the resulting float depending on the number of significant digits present
  223. in the input string.
  224. * Speed up the functions
  225. `cl_R operator* (const cl_RA&, const cl_LF&)'
  226. `cl_R operator* (const cl_LF&, const cl_RA&)'
  227. `cl_R operator/ (const cl_RA&, const cl_LF&)'
  228. `cl_LF operator/ (const cl_LF&, const cl_RA&)'
  229. Implementation changes
  230. ----------------------
  231. * Fix for `cl_I ash (const cl_I& x, const cl_I& n)' when |n| is between
  232. 2^29 and 2^37.
  233. (Reported by Thomas Papanikolaou.)
  234. * Fixed a memory leak in the long-float truncate function.
  235. (Reported by Keith Briggs.)
  236. * Fixed a memory leak in the modular integer exponentiation.
  237. * Reduced the stack space consumption. The default stack size (typically
  238. 8 MB on Unix) should now be sufficient in order to run all CLN programs.
  239. * Portability fixes for m68k platforms.
  240. (Reported and fixed by Roman Hodek.)
  241. Other changes
  242. -------------
  243. * Restructured the sources. The subpackages
  244. - base
  245. - base + integer
  246. - base + integer + rational
  247. - base + integer + rational + float
  248. - base + integer + rational + float + real
  249. - base + integer + rational + float + real + complex
  250. - base + integer + modinteger
  251. are now self-contained.
  252. * The configuration script can be called with option `--enable-shared',
  253. to build CLN as a shared library.
  254. * Updated the LiDIA interface.
  255. 1998-05-07, version 0.98
  256. ========================
  257. Implementation changes
  258. ----------------------
  259. * Portability fixes for 64-bit platforms like DEC Alpha.
  260. (Reported by John Cremona and Thomas Papanikolaou.)
  261. 1998-02-27
  262. ==========
  263. Other changes
  264. -------------
  265. * Portability fixes for new ISO/ANSI C++ compilers.
  266. * Updated the LiDIA interface for LiDIA version 1.3 and fixed a couple of
  267. bugs.
  268. 1997-09-06
  269. ==========
  270. Implementation changes
  271. ----------------------
  272. * Portability fix for i686 platforms.
  273. (Reported by Michael Pfeifer.)
  274. 1997-09-01
  275. ==========
  276. Functional changes
  277. ------------------
  278. * New include files:
  279. <cl_ring.h>, declaring general rings,
  280. <cl_GV.h>, <cl_SV.h>, defining vectors,
  281. <cl_univpoly.h>, defining univariate polynomial rings.
  282. Algorithmic changes
  283. -------------------
  284. * Speed up the internal computation of ln(2) and ln(10) by about 20%.
  285. * Speed up the computation of exp (for 1000 digits or more) by about 10%.
  286. Implementation changes
  287. ----------------------
  288. * Portability fix for 64-bit platforms like DEC Alpha:
  289. Fixed a bug: endless loop in `sqrt' for large precision.
  290. (Reported by Blake Jones.)
  291. * Portability fix for RS/6000 platforms.
  292. 1997-02-21
  293. ==========
  294. Algorithmic changes
  295. -------------------
  296. * Speed up the computation of the elementary transcendental functions:
  297. exp, sinh, cosh, asinh, atanh (for 100 digits) by about 30%,
  298. log (for 100 digits) by about 25%,
  299. sin, cos (for 1000 or 10000 digits) by about 20%,
  300. asin, acos, atan (for 1000 digits) by about 25%.
  301. Implementation changes
  302. ----------------------
  303. * Portability fix for SunOS 4 and other BSD platforms.
  304. 1997-01-31
  305. ==========
  306. Algorithmic changes
  307. -------------------
  308. * Fixed a bug: endless recursion in `cl_boolean sqrtp (const cl_RA&, cl_RA*)'.
  309. * Fixed a bug: Only the first 85% of the digits returned by `cl_eulerconst'
  310. for moderate precision (< 11370 digits) were correct.
  311. (Reported by Thomas Papanikolaou.)
  312. Implementation changes
  313. ----------------------
  314. * Fix static initialization order bug. Requires g++ 2.7.0 or newer
  315. (g++ 2.8.0 or newer on HPPA).
  316. * New method `debug_print()', for pretty printing of CLN objects, intended
  317. to be called from the debugger.
  318. 1997-01-07
  319. ==========
  320. Functional changes
  321. ------------------
  322. * New functions `float cl_float_approx (const cl_R&)',
  323. `double cl_double_approx (const cl_R&)'
  324. for converting a real number to a C `float' or `double'.
  325. Algorithmic changes
  326. -------------------
  327. * Speed up `cl_zeta' using Cohen-Villegas-Zagier convergence acceleration.
  328. Implementation changes
  329. ----------------------
  330. * New function `cl_print', for pretty printing of CLN objects, intended to be
  331. called from the debugger.
  332. * Portability fixes for 64-bit platforms like DEC Alpha.
  333. 1996-11-29
  334. ==========
  335. Functional changes
  336. ------------------
  337. * New include files:
  338. <cl_string.h>, defining strings,
  339. <cl_symbol.h>, defining symbols,
  340. <cl_proplist.h>, defining property lists,
  341. <cl_condition.h>, defining conditions/exceptions.
  342. * New functions `cl_F cl_catalanconst ()',
  343. `cl_F cl_catalanconst (const cl_F&)',
  344. `cl_F cl_catalanconst (cl_float_format_t)'
  345. which return Catalan's constant.
  346. (Suggested by Thomas Papanikolaou.)
  347. * New functions `cl_F cl_zeta (int s)',
  348. `cl_F cl_zeta (int s, const cl_F&)',
  349. `cl_F cl_zeta (int s, cl_float_format_t)'
  350. which return the Riemann zeta function at an integral point s>1.
  351. * New functions `cl_F cl_exp1 ()',
  352. `cl_F cl_exp1 (const cl_F&)',
  353. `cl_F cl_exp1 (cl_float_format_t)'
  354. which return e = exp(1).
  355. * New function `cl_I binomial (uintL n, uintL k)' which returns the
  356. binomial coefficient (n choose k).
  357. * New functions `int cl_I_to_int (const cl_I&)',
  358. `unsigned int cl_I_to_uint (const cl_I&)',
  359. `long cl_I_to_long (const cl_I&)',
  360. `unsigned long cl_I_to_ulong (const cl_I&)'
  361. for converting an integer to a C `int' or `long'.
  362. * New functions `float cl_float_approx (const cl_I&)',
  363. `float cl_float_approx (const cl_RA&)',
  364. `double cl_double_approx (const cl_I&)',
  365. `double cl_double_approx (const cl_RA&)'
  366. for converting a rational number to a C `float' or `double'.
  367. Implementation changes
  368. ----------------------
  369. * Moved the sources to subdirectories.
  370. (Suggested by Jörg Arndt.)
  371. Other changes
  372. -------------
  373. * New benchmark for better comparing LiDIA, Pari and CLN.
  374. * Added an interface to LiDIA, allows using CLN as a replacement of libI.
  375. (Suggested by Thomas Papanikolaou.)
  376. * Added an ILOG Talk interface, for interactive use of the library.
  377. 1996-10-13
  378. ==========
  379. Functional changes
  380. ------------------
  381. * New include file <cl_modinteger.h>, defining modular integer rings.
  382. * New functions `cl_F cl_eulerconst ()', `cl_F cl_eulerconst (const cl_F&)',
  383. `cl_F cl_eulerconst (cl_float_format_t)' which return Euler's constant.
  384. Algorithmic changes
  385. -------------------
  386. * Speed up square root of large numbers by use of Newton's algorithm.
  387. * Speed up multiplication and division of large long-floats by small integers.
  388. * Speed up the computation of pi, e, exp, log, sin, cos, tan, sinh, cosh, tanh,
  389. asin, acos, atan, asinh, acosh, atanh.
  390. All of them are now computed with asymptotically fast algorithms, of
  391. bit complexity O(log(N)^2*M(N)) = O(N^(1+epsilon)) for N digits.
  392. * Fixed several bugs in the transcendental functions routines. In particular,
  393. the `log' function went into an endless loop.
  394. * Fixed a bug: The cl_I -> cl_DF and cl_I -> cl_LF conversions didn't work
  395. correctly for negative integers.
  396. 1996-09-08
  397. ==========
  398. Functional changes
  399. ------------------
  400. * New include file <cl_numtheory.h>, containing number theoretic functions,
  401. for now only the Jacobi symbol.
  402. Algorithmic changes
  403. -------------------
  404. * Speed up squaring of large numbers by 30%.
  405. * Speed up division of large numbers by use of Newton's algorithm. The
  406. improvement is noticeable for numbers with at least about 1000 words =
  407. 32000 bits = 10000 decimal digits.
  408. * Speed up the binary-to-decimal conversion of large numbers by use of
  409. a divide-and-conquer method. The improvement is noticeable for numbers
  410. of at least 1250 words = 40000 bits = 12000 decimal digits.
  411. * Fixed a bug: The functions `cl_boolean minusp (const type&)' and
  412. `cl_boolean zerop (const type&)' were missing for type=cl_I and type=cl_RA.
  413. * Fixed a bug: The function `cl_boolean logtest (const cl_I&, const cl_I&)'
  414. didn't work correctly if both arguments were bignums.
  415. * Fixed a bug: The function `cl_I mod (const cl_I&, const cl_I&)', when called
  416. as `mod(-n*m,m)' (n>0), returned m instead of 0.
  417. * Fixed a bug: The function `uintL power2p (const cl_I&)' returned wrong
  418. values for arguments x = 2^n, n >= 29.
  419. Implementation changes
  420. ----------------------
  421. * Speed up CLN by using the low-level addition/subtraction, shift and
  422. multiplication loops from GNU gmp-2.0.2.
  423. * Fixed a severe reference counting bug in the constructors
  424. `type::type (const long)' and `type::type (const unsigned long)'
  425. for type=cl_number, type=cl_N, type=cl_RA, type=cl_I that most often
  426. caused a core dump.
  427. * CLN's word sequences can be chosen to be stored big-endian in memory
  428. (like it was up to now) or little-endian (needed for interfacing to GMP).
  429. 1996-05-20
  430. ==========
  431. Functional changes
  432. ------------------
  433. * New include file <cl_timing.h>, contains timing facilities.
  434. Algorithmic changes
  435. -------------------
  436. * Speed up the multiplication of large numbers by use of an FFT based
  437. algorithm (Schönhage-Strassen). The improvement is noticeable when both
  438. factors have at least 1250 words = 40000 bits = 12000 decimal digits.
  439. * Speed up the functions `cl_I gcd (const cl_I&, const cl_I&)' and
  440. `cl_I xgcd (const cl_I&, const cl_I&, cl_I*, cl_I*)' by a factor
  441. of 1.5. Simple trick.
  442. * Speed up the function `cl_boolean sqrtp (const cl_I&, cl_I*)' using a
  443. trick from Henri Cohen.
  444. * Fixed an endless loop in the function `uint32 gcd (uint32, uint32)'
  445. which occurred when one of the arguments is zero.
  446. * Fixed an endless loop in the function `cl_I factorial (uintL)'.
  447. Implementation changes
  448. ----------------------
  449. * <cl_io.h> now uses iostreams by default instead of stdio FILE pointers.
  450. (Reported by Tito Flagella.)
  451. * Fixed linking error when compiling without -O.
  452. (Reported by Tito Flagella.)
  453. * Fixed syntax error in <cl_input.h>.
  454. (Reported by Tito Flagella.)
  455. * Fixed syntax errors in src/cl_DS.h and src/cl_FF_plus.h.
  456. (Reported by Marcus Daniels.)
  457. * More portability fixes.
  458. * Configuration now supports the --srcdir option.
  459. (Reported by Marcus Daniels.)
  460. 1996-01-03
  461. ==========
  462. * Compiles well on Sparc, using gcc.
  463. * Mail to beta testers.
  464. 1995-12-06
  465. ==========
  466. * Compiles well on Linux, using gcc.