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.

1920 lines
74 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
2006-04-25 Bruno Haible <bruno@clisp.org> Richard B. Kreckel <kreckel@ginac.de> Make it theoretically possible to use bignums and long-floats with more than 2^32 significant digits or bits. * doc/cln.tex (logcount): Change return type to uintC. (struct cl_byte): Change elements to uintC. (integer_length, ord2, power2p): Change return type to uintC. (scale_float): Change argument type to sintC. (float_digits, float_precision): Change return type to uintC. * examples/atan_recip.cc: Use uintC instead of uintL where appropriate. * examples/atanh_recip.cc: Likewise. * include/cln/GV.h: Likewise. * include/cln/GV_complex.h: Likewise. * include/cln/GV_integer.h: Likewise. * include/cln/GV_modinteger.h: Likewise. * include/cln/GV_number.h: Likewise. * include/cln/GV_rational.h: Likewise. * include/cln/GV_real.h: Likewise. * include/cln/SV.h: Likewise. * include/cln/SV_complex.h: Likewise. * include/cln/SV_integer.h: Likewise. * include/cln/SV_number.h: Likewise. * include/cln/SV_rational.h: Likewise. * include/cln/SV_real.h: Likewise. * include/cln/SV_ringelt.h: Likewise. * include/cln/dfloat.h: Likewise. * include/cln/ffloat.h: Likewise. * include/cln/float.h: Likewise. * include/cln/integer.h: Likewise. * include/cln/lfloat.h: Likewise. * include/cln/modinteger.h: Likewise. * include/cln/sfloat.h: Likewise. * src/base/cl_low.h (integerlengthC): New macro. * src/base/digitseq/cl_2DS_div.cc: Use uintC instead of uintL where appropriate. * src/base/digitseq/cl_2DS_recip.cc: Likewise. * src/base/digitseq/cl_DS.h: Likewise. * src/base/digitseq/cl_DS_mul.c: Likewise. * src/base/digitseq/cl_DS_mul_fftc.h: Likewise. * src/base/digitseq/cl_DS_mul_fftcs.h: Likewise. * src/base/digitseq/cl_DS_mul_fftm.h: Likewise. * src/base/digitseq/cl_DS_mul_fftp.h: Likewise. * src/base/digitseq/cl_DS_mul_fftp3.h: Likewise. * src/base/digitseq/cl_DS_mul_fftp3m.h: Likewise. * src/base/digitseq/cl_DS_mul_fftr.h: Likewise. * src/base/digitseq/cl_DS_mul_kara.h: Likewise. * src/base/digitseq/cl_DS_mul_nuss.h: Likewise. * src/base/digitseq/cl_DS_recip.cc: Likewise. * src/base/digitseq/cl_DS_recipsqrt.cc: Likewise. * src/base/digitseq/cl_DS_sqrt.cc: Likewise. * src/base/digitseq/cl_DS_trandom.cc: Likewise. * src/complex/input/cl_N_read.cc: Likewise. * src/complex/transcendental/cl_C_asinh_aux.cc: Likewise. * src/complex/transcendental/cl_C_expt_C.cc: Likewise. * src/float/cl_F.h: Likewise. * src/float/conv/cl_F_from_F_f.cc: Likewise. * src/float/conv/cl_F_from_I_f.cc: Likewise. * src/float/conv/cl_F_from_RA_f.cc: Likewise. * src/float/dfloat/conv/cl_I_to_double.cc: Likewise. * src/float/dfloat/conv/cl_RA_to_double.cc: Likewise. * src/float/dfloat/elem/cl_DF_from_I.cc: Likewise. * src/float/dfloat/elem/cl_DF_from_RA.cc: Likewise. * src/float/dfloat/elem/cl_DF_scale.cc: Likewise. * src/float/dfloat/misc/cl_DF_digits.cc: Likewise. * src/float/dfloat/misc/cl_DF_precision.cc: Likewise. * src/float/elem/cl_F_scale.cc: Likewise. * src/float/ffloat/conv/cl_I_to_float.cc: Likewise. * src/float/ffloat/conv/cl_RA_to_float.cc: Likewise. * src/float/ffloat/elem/cl_FF_from_I.cc: Likewise. * src/float/ffloat/elem/cl_FF_from_RA.cc: Likewise. * src/float/ffloat/elem/cl_FF_scale.cc: Likewise. * src/float/ffloat/misc/cl_FF_digits.cc: Likewise. * src/float/ffloat/misc/cl_FF_precision.cc: Likewise. * src/float/input/cl_F_read.cc: 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_div.cc: Likewise. * src/float/lfloat/elem/cl_LF_from_I.cc: Likewise. * src/float/lfloat/elem/cl_LF_from_RA.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_scale.cc: Likewise. * src/float/lfloat/elem/cl_LF_to_I.cc: Likewise. * src/float/lfloat/misc/cl_LF_digits.cc: Likewise. * src/float/lfloat/misc/cl_LF_idecode.cc: Likewise. * src/float/lfloat/misc/cl_LF_leninc.cc: Likewise. * src/float/lfloat/misc/cl_LF_lenincx.cc: Likewise. * src/float/lfloat/misc/cl_LF_precision.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_digits.cc: Likewise. * src/float/misc/cl_F_epsneg.cc: Likewise. * src/float/misc/cl_F_epspos.cc: Likewise. * src/float/misc/cl_F_leastneg.cc: Likewise. * src/float/misc/cl_F_leastpos.cc: Likewise. * src/float/misc/cl_F_mostneg.cc: Likewise. * src/float/misc/cl_F_mostpos.cc: Likewise. * src/float/misc/cl_F_precision.cc: Likewise. * src/float/misc/cl_F_rational.cc: Likewise. * src/float/misc/cl_F_shortenrel.cc: Likewise. * src/float/output/cl_F_dprint.cc: Likewise. * src/float/random/cl_F_random.cc: Likewise. * src/float/sfloat/elem/cl_SF_from_I.cc: Likewise. * src/float/sfloat/elem/cl_SF_from_RA.cc: Likewise. * src/float/sfloat/elem/cl_SF_scale.cc: Likewise. * src/float/sfloat/misc/cl_SF_digits.cc: Likewise. * src/float/sfloat/misc/cl_SF_precision.cc: Likewise. * src/float/transcendental/cl_F_atanhx.cc: Likewise. * src/float/transcendental/cl_F_atanx.cc: Likewise. * src/float/transcendental/cl_F_catalanconst_f.cc: Likewise. * src/float/transcendental/cl_F_cos.cc: Likewise. * src/float/transcendental/cl_F_cosh.cc: Likewise. * src/float/transcendental/cl_F_coshsinh.cc: Likewise. * src/float/transcendental/cl_F_cossin.cc: Likewise. * src/float/transcendental/cl_F_eulerconst_f.cc: Likewise. * src/float/transcendental/cl_F_exp1_f.cc: Likewise. * src/float/transcendental/cl_F_expx.cc: Likewise. * src/float/transcendental/cl_F_ln10_f.cc: Likewise. * src/float/transcendental/cl_F_ln2_f.cc: Likewise. * src/float/transcendental/cl_F_lnx.cc: Likewise. * src/float/transcendental/cl_F_pi_f.cc: Likewise. * src/float/transcendental/cl_F_sin.cc: Likewise. * src/float/transcendental/cl_F_sinh.cc: Likewise. * src/float/transcendental/cl_F_sinhx.cc: Likewise. * src/float/transcendental/cl_F_sinx.cc: Likewise. * src/float/transcendental/cl_F_tran.h: Likewise. * src/float/transcendental/cl_F_zeta_int_f.cc: Likewise. * src/float/transcendental/cl_LF_atan_recip.cc: Likewise. * src/float/transcendental/cl_LF_atanh_recip.cc: Likewise. * src/float/transcendental/cl_LF_catalanconst.cc: Likewise. * src/float/transcendental/cl_LF_coshsinh_aux.cc: Likewise. * src/float/transcendental/cl_LF_cossin_aux.cc: Likewise. * src/float/transcendental/cl_LF_eulerconst.cc: Likewise. * src/float/transcendental/cl_LF_exp1.cc: Likewise. * src/float/transcendental/cl_LF_exp_aux.cc: Likewise. * src/float/transcendental/cl_LF_pi.cc: Likewise. * src/float/transcendental/cl_LF_ratseries.cc: Likewise. * src/float/transcendental/cl_LF_ratseries_.cc: Likewise. * src/float/transcendental/cl_LF_ratseries_a.cc: Likewise. * src/float/transcendental/cl_LF_ratseries_ab.cc: Likewise. * src/float/transcendental/cl_LF_ratseries_b.cc: Likewise. * src/float/transcendental/cl_LF_ratseries_p.cc: Likewise. * src/float/transcendental/cl_LF_ratseries_pa.cc: Likewise. * src/float/transcendental/cl_LF_ratseries_pab.cc: Likewise. * src/float/transcendental/cl_LF_ratseries_pb.cc: Likewise. * src/float/transcendental/cl_LF_ratseries_pq.cc: Likewise. * src/float/transcendental/cl_LF_ratseries_pqa.cc: Likewise. * src/float/transcendental/cl_LF_ratseries_pqab.cc: Likewise. * src/float/transcendental/cl_LF_ratseries_pqb.cc: Likewise. * src/float/transcendental/cl_LF_ratseries_q.cc: Likewise. * src/float/transcendental/cl_LF_ratseries_qa.cc: Likewise. * src/float/transcendental/cl_LF_ratseries_qab.cc: Likewise. * src/float/transcendental/cl_LF_ratseries_qb.cc: Likewise. * src/float/transcendental/cl_LF_ratseries_stream_pq.cc: Likewise. * src/float/transcendental/cl_LF_ratseries_stream_pqa.cc: Likewise. * src/float/transcendental/cl_LF_ratseries_stream_pqab.cc: Likewise. * src/float/transcendental/cl_LF_ratseries_stream_pqb.cc: Likewise. * src/float/transcendental/cl_LF_ratsumseries_pqcd.cc: Likewise. * src/float/transcendental/cl_LF_ratsumseries_pqcd_aux.cc: Likewise. * src/float/transcendental/cl_LF_ratsumseries_pqd.cc: Likewise. * src/float/transcendental/cl_LF_ratsumseries_pqd_aux.cc: Likewise. * src/float/transcendental/cl_LF_tran.h: Likewise. * src/float/transcendental/cl_LF_zeta3.cc: Likewise. * src/float/transcendental/cl_LF_zeta_int.cc: Likewise. * src/integer/algebraic/cl_I_rootp_I.cc: Likewise. * src/integer/algebraic/cl_I_rootp_aux.cc: Likewise. * src/integer/bitwise/cl_I_ash.cc: Likewise. * src/integer/bitwise/cl_I_ash_I.cc: Likewise. * src/integer/bitwise/cl_I_byte.h: Likewise. * src/integer/bitwise/cl_I_fullbyte.cc: Likewise. * src/integer/bitwise/cl_I_ilength.cc: Likewise. * src/integer/bitwise/cl_I_ldb.cc: Likewise. * src/integer/bitwise/cl_I_ldbtest.cc: Likewise. * src/integer/bitwise/cl_I_ldbx.cc: Likewise. * src/integer/bitwise/cl_I_ldbxtest.cc: Likewise. * src/integer/bitwise/cl_I_logbitp.cc: Likewise. * src/integer/bitwise/cl_I_logbitp_I.cc: Likewise. * src/integer/bitwise/cl_I_logcount.cc: Likewise. * src/integer/bitwise/cl_I_mkf.cc: Likewise. * src/integer/bitwise/cl_I_mkfx.cc: Likewise. * src/integer/cl_I.h: Likewise. * src/integer/conv/cl_I_to_digits.cc: Likewise. * src/integer/conv/cl_I_digits_need.cc: Likewise. * src/integer/conv/cl_I_from_digits.cc: Likewise. * src/integer/gcd/cl_I_gcd.cc: Likewise. * src/integer/gcd/cl_I_xgcd.cc: Likewise. * src/integer/misc/cl_I_eqhashcode.cc: Likewise. * src/integer/misc/cl_I_ord2.cc: Likewise. * src/integer/misc/cl_I_power2p.cc: Likewise. * src/integer/output/cl_I_cached_power.h (cached_power_table): allow for 40 elements. * src/integer/output/cl_I_decstring.cc: Use uintC instead of uintL where appropriate. * src/integer/output/cl_I_print.cc: Likewise. * src/integer/output/cl_I_print_string.cc: Likewise. * src/modinteger/cl_MI.cc: Likewise. * src/modinteger/cl_MI_lshift.cc: Likewise. * src/modinteger/cl_MI_montgom.h: Likewise. * src/modinteger/cl_MI_pow2.h: Likewise. * src/modinteger/cl_MI_pow2m1.h: Likewise. * src/modinteger/cl_MI_pow2p1.h: Likewise. * src/modinteger/cl_MI_rshift.cc: Likewise. * src/modinteger/cl_MI_std.h: Likewise. * src/numtheory/cl_IF_millerrabin.cc: Likewise. * src/numtheory/cl_nt_isprobprime.cc: Likewise. * src/numtheory/cl_nt_sqrtmodp.cc: Likewise. * src/polynomial/elem/cl_UP_GF2.h: Likewise. * src/real/conv/cl_F_from_R_f.cc: Likewise. * src/real/format-output/cl_fmt_floatstring.cc: Likewise. * src/real/input/cl_R_read.cc: Likewise. * src/vector/cl_GV_I.cc: Likewise. * src/vector/cl_GV_I_copy.cc: Likewise. * src/vector/cl_GV_number.cc: Likewise. * src/vector/cl_GV_number_copy.cc: Likewise. * src/vector/cl_SV_copy.cc: Likewise. * src/vector/cl_SV_number.cc: Likewise. * src/vector/cl_SV_ringelt.cc: Likewise. * tests/main.cc: Likewise. * tests/test_I_ilength.cc: Likewise. * tests/test_I_ord2.cc: Likewise.
19 years ago
19 years ago
24 years ago
24 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
  1. 2007-05-31 Richard B. Kreckel <kreckel@ginac.de>
  2. * include/cln/integer.h (cl_I_to_E, cl_I_to_UE): New functions.
  3. * src/float/transcendental/cl_LF_exp_aux.cc: Make lq argument an uintE.
  4. * src/float/transcendental/cl_LF_cossin_aux.cc: Likewise.
  5. * src/float/transcendental/cl_LF_coshsinh_aux.cc: Likewise.
  6. * src/float/transcendental/cl_F_tran.h: Change declaration of lq.
  7. * src/float/transcendental/cl_F_lnx.cc: Fix some exponent types.
  8. * src/float/transcendental/cl_F_expx.cc: Likewise.
  9. * src/float/transcendental/cl_F_sinh.cc: Likewise.
  10. * src/float/transcendental/cl_F_atanx.cc: Likewise.
  11. * src/float/transcendental/cl_F_coshsinh.cc: Likewise.
  12. * src/float/transcendental/cl_LF_cossin.cc: Likewise.
  13. * src/float/transcendental/cl_LF_coshsinh.cc: Likewise.
  14. 2007-04-09 Richard B. Kreckel <kreckel@ginac.de>
  15. More memory efficient constants:
  16. * src/float/transcendental/cl_LF_pi.cc (compute_pi_ramanujan_163_fast):
  17. Compute series coefficients on demand, using a series stream object.
  18. * src/float/transcendental/cl_LF_zeta3.cc (zeta3): Likewise.
  19. * src/float/transcendental/cl_LF_catalanconst.cc
  20. (compute_catalanconst_ramanujan_fast): Likewise.
  21. (compute_catalanconst_lupas): New function.
  22. (compute_catalanconst): Simplify, based on new benchmark.
  23. 2007-04-02 Alexei Sheplyakov <varg@theor.jinr.ru>
  24. Debian Bug#412103:
  25. * cln.pc.in: list -lgmp in Libs.private instead of in Libs.
  26. * doc/cln.tex: Undocument cln-config, properly document pkg-config.
  27. * cln-config.1.in: Remove.
  28. * cln-config.in: Remove.
  29. * cln.m4: Remove.
  30. * configure.ac: Don't output cln-config and cln-config.1.
  31. 2006-12-24 Bruno Haible <bruno@clisp.org>
  32. Make autoconfiguration work with gcc-4.3 snapshots.
  33. * autoconf/intparam.c (main1): Rename get_integer_bitsize to
  34. get_unsigned_integer_bitsize. New macro get_signed_integer_bitsize.
  35. 2006-12-19 Bruno Haible <bruno@clisp.org>
  36. * autoconf/intparam.c (main): Use 'return', not exit().
  37. * autoconf/floatparam.c (main): Likewise.
  38. Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
  39. 2006-12-11 Richard B. Kreckel <kreckel@ginac.de>
  40. Extend the exponent range from 32 bits to 64 bits on selected platforms.
  41. * include/cln/number.h: Add signatures for operations with long long.
  42. * include/cln/complex_class.h: Likewise.
  43. * include/cln/real_class.h: Likewise.
  44. * include/cln/real.h: Likewise.
  45. * include/cln/rational_class.h: Likewise.
  46. * include/cln/rational.h: Likewise.
  47. * include/cln/integer_class.h: Likewise.
  48. * include/cln/integer.h: Likewise.
  49. * include/cln/float.h: Likewise.
  50. * include/cln/lfloat.h: Likewise.
  51. * include/cln/types.h (sintE and uintE): New types for exponents.
  52. * include/cln/*float.h: Use the new types for exponents.
  53. * include/cln/floatformat.h (float_format_t): Make underlying type
  54. compatible with sintE.
  55. * doc/cln.tex: Document changed float_exponent return value.
  56. * src/float/cl_F.h: Likewise.
  57. * src/float/ffloat/misc/cl_FF_exponent.cc: Likewise.
  58. * src/float/input/cl_F_read.cc: Likewise.
  59. * src/float/lfloat/cl_LF.h: Likewise.
  60. * src/float/lfloat/cl_LF_impl.h: Likewise.
  61. * src/float/lfloat/algebraic/cl_LF_sqrt.cc: Likewise.
  62. * src/float/lfloat/elem/cl_LF_1plus.cc: Likewise.
  63. * src/float/lfloat/elem/cl_LF_I_div.cc: Likewise.
  64. * src/float/lfloat/elem/cl_LF_I_mul.cc: Likewise.
  65. * src/float/lfloat/elem/cl_LF_compare.cc: Likewise.
  66. * src/float/lfloat/elem/cl_LF_div.cc: Likewise.
  67. * src/float/lfloat/elem/cl_LF_from_I.cc: Likewise.
  68. * src/float/lfloat/elem/cl_LF_fround.cc: Likewise.
  69. * src/float/lfloat/elem/cl_LF_ftrunc.cc: Likewise.
  70. * src/float/lfloat/elem/cl_LF_futrunc.cc: Likewise.
  71. * src/float/lfloat/elem/cl_LF_mul.cc: Likewise.
  72. * src/float/lfloat/elem/cl_LF_scale.cc: Likewise.
  73. * src/float/lfloat/elem/cl_LF_scale_I.cc: Likewise.
  74. * src/float/lfloat/elem/cl_LF_square.cc: Likewise.
  75. * src/float/lfloat/elem/cl_LF_to_I.cc: Likewise.
  76. * src/float/lfloat/misc/cl_LF_decode.cc: Likewise.
  77. * src/float/lfloat/misc/cl_LF_exponent.cc: Likewise.
  78. * src/float/lfloat/misc/cl_LF_idecode.cc: Likewise.
  79. * src/float/lfloat/misc/cl_LF_shortenrel.cc: Likewise.
  80. * src/float/lfloat/misc/cl_LF_shortenwith.cc: Likewise.
  81. * src/float/misc/cl_F_decode.cc: Likewise.
  82. * src/float/misc/cl_F_exponent.cc: Likewise.
  83. * src/float/misc/cl_F_shortenrel.cc: Likewise.
  84. * src/float/misc/cl_float_format.cc: Likewise.
  85. * src/float/output/cl_F_dprint.cc: Likewise.
  86. * src/float/sfloat/misc/cl_SF_exponent.cc: Likewise.
  87. * src/float/transcendental/cl_F_atanhx.cc: Likewise.
  88. * src/float/transcendental/cl_F_atanx.cc: Likewise.
  89. * src/float/transcendental/cl_F_cosh.cc: Likewise.
  90. * src/float/transcendental/cl_F_expx.cc: Likewise.
  91. * src/float/transcendental/cl_F_lnx.cc: Likewise.
  92. * src/float/transcendental/cl_F_sinhx.cc: Likewise.
  93. * src/float/transcendental/cl_F_sinx.cc: Likewise.
  94. * src/float/transcendental/cl_LF_pi.cc: Likewise.
  95. * src/integer/cl_I.h: Likewise.
  96. * src/complex/algebraic/cl_LF_hypot.cc: Likewise.
  97. * src/complex/elem/division/cl_C_LF_recip.cc: Likewise.
  98. * src/float/dfloat/misc/cl_DF_exponent.cc: Likewise.
  99. * src/integer/conv/cl_I_from_Q2.cc: Added.
  100. * src/base/cl_low.h (isqrtC): New function, for 64 bit falls back to...
  101. * src/base/low/cl_low_isqrt.cc (isqrt): ...this new implementation.
  102. * src/base/cl_macros.h (bitc): Make sure 64 bit is used if required by
  103. exponent operations.
  104. * examples/pi.cc: Support more than 646456614 decimal digits.
  105. 2006-11-02 Richard B. Kreckel <kreckel@ginac.de>
  106. * src/base/digitseq/cl_DS.h: #undef DS, needed for i386-Solaris.
  107. 2006-10-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  108. * tests/Makefile.in (VPATH): Fix syntax error.
  109. 2006-09-14 Richard B. Kreckel <kreckel@ginac.de>
  110. * examples/perfnum.cc: update to presumed 44th Mersenne prime.
  111. 2006-08-15 Richard B. Kreckel <kreckel@ginac.de>
  112. * tests/Makefile.in: MinGW support for make check
  113. (Patch by Sheplyakov Alexei <varg@theor.jinr.ru> to add ${EXEEXT}).
  114. * Makefile.in: Convert from $(VAR) to ${VAR} syntax.
  115. * benchmarks/Makefile.in: Likewise.
  116. * doc/Makefile.in: Likewise.
  117. * examples/Makefile.in: Likewise.
  118. * src/Makefile.in: Likewise.
  119. * tests/Makefile.in: Likewise.
  120. 2006-08-06 Richard B. Kreckel <kreckel@ginac.de>
  121. * configure.ac: Re-enable shared lib on non-MinGW platforms, sigh.
  122. 2006-08-04 Sheplyakov Alexei <varg@theor.jinr.ru>
  123. * configure.ac: Disable shared lib on MinGW.
  124. 2006-08-03 Sheplyakov Alexei <varg@theor.jinr.ru>
  125. * m4/param.m4: Add support for MinGW.
  126. * src/base/random/cl_random_from.cc: Fix for last patch.
  127. 2006-07-23 Sheplyakov Alexei <varg@theor.jinr.ru>
  128. * src/base/random/cl_random_from.cc: Add support for MinGW.
  129. 2006-06-13 Richard B. Kreckel <kreckel@ginac.de>
  130. * m4/general.m4 (CL_CANONICAL_HOST_CPU): Force host_cpu=i386 for x86_64
  131. if userland is 32 bit.
  132. * include/cln/config.h.in: Simplify __x86_64__ selection.
  133. * src/base/digitseq/cl_asm_x86_64_.cc: Remove.
  134. 2006-06-09 Richard B. Kreckel <kreckel@ginac.de>
  135. * src/base/digitseq/cl_DS.h (struct DS): Change len type to uintC.
  136. 2006-05-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  137. * m4/gettimeofday.m4 (CL_GETTIMEOFDAY): Fix M4 quoting.
  138. 2006-05-20 Bruno Haible <bruno@clisp.org>
  139. * src/base/random/cl_random_from.cc: Treat FreeBSD, NetBSD like other
  140. Unix platforms.
  141. 2006-05-07 Richard B. Kreckel <kreckel@ginac.de>
  142. * include/cln/modules.h (CL_JUMP_TO): Fix for Intel Mac.
  143. 2006-04-25 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  144. Prepare for autoconf-2.60.
  145. * Makefile.in (datarootdir): New variable.
  146. * src/Makefile.in (datarootdir): New variable.
  147. * doc/Makefile.in (datarootdir): New variable.
  148. 2006-04-25 Bruno Haible <bruno@clisp.org>
  149. Richard B. Kreckel <kreckel@ginac.de>
  150. Make it theoretically possible to use bignums and long-floats with
  151. more than 2^32 significant digits or bits.
  152. * doc/cln.tex (logcount): Change return type to uintC.
  153. (struct cl_byte): Change elements to uintC.
  154. (integer_length, ord2, power2p): Change return type to uintC.
  155. (scale_float): Change argument type to sintC.
  156. (float_digits, float_precision): Change return type to uintC.
  157. * examples/atan_recip.cc: Use uintC instead of uintL where appropriate.
  158. * examples/atanh_recip.cc: Likewise.
  159. * include/cln/GV.h: Likewise.
  160. * include/cln/GV_complex.h: Likewise.
  161. * include/cln/GV_integer.h: Likewise.
  162. * include/cln/GV_modinteger.h: Likewise.
  163. * include/cln/GV_number.h: Likewise.
  164. * include/cln/GV_rational.h: Likewise.
  165. * include/cln/GV_real.h: Likewise.
  166. * include/cln/SV.h: Likewise.
  167. * include/cln/SV_complex.h: Likewise.
  168. * include/cln/SV_integer.h: Likewise.
  169. * include/cln/SV_number.h: Likewise.
  170. * include/cln/SV_rational.h: Likewise.
  171. * include/cln/SV_real.h: Likewise.
  172. * include/cln/SV_ringelt.h: Likewise.
  173. * include/cln/dfloat.h: Likewise.
  174. * include/cln/ffloat.h: Likewise.
  175. * include/cln/float.h: Likewise.
  176. * include/cln/integer.h: Likewise.
  177. * include/cln/lfloat.h: Likewise.
  178. * include/cln/modinteger.h: Likewise.
  179. * include/cln/sfloat.h: Likewise.
  180. * src/base/cl_low.h (integerlengthC): New macro.
  181. * src/base/digitseq/cl_2DS_div.cc: Use uintC instead of uintL where
  182. appropriate.
  183. * src/base/digitseq/cl_2DS_recip.cc: Likewise.
  184. * src/base/digitseq/cl_DS.h: Likewise.
  185. * src/base/digitseq/cl_DS_mul.c: Likewise.
  186. * src/base/digitseq/cl_DS_mul_fftc.h: Likewise.
  187. * src/base/digitseq/cl_DS_mul_fftcs.h: Likewise.
  188. * src/base/digitseq/cl_DS_mul_fftm.h: Likewise.
  189. * src/base/digitseq/cl_DS_mul_fftp.h: Likewise.
  190. * src/base/digitseq/cl_DS_mul_fftp3.h: Likewise.
  191. * src/base/digitseq/cl_DS_mul_fftp3m.h: Likewise.
  192. * src/base/digitseq/cl_DS_mul_fftr.h: Likewise.
  193. * src/base/digitseq/cl_DS_mul_kara.h: Likewise.
  194. * src/base/digitseq/cl_DS_mul_nuss.h: Likewise.
  195. * src/base/digitseq/cl_DS_recip.cc: Likewise.
  196. * src/base/digitseq/cl_DS_recipsqrt.cc: Likewise.
  197. * src/base/digitseq/cl_DS_sqrt.cc: Likewise.
  198. * src/base/digitseq/cl_DS_trandom.cc: Likewise.
  199. * src/complex/input/cl_N_read.cc: Likewise.
  200. * src/complex/transcendental/cl_C_asinh_aux.cc: Likewise.
  201. * src/complex/transcendental/cl_C_expt_C.cc: Likewise.
  202. * src/float/cl_F.h: Likewise.
  203. * src/float/conv/cl_F_from_F_f.cc: Likewise.
  204. * src/float/conv/cl_F_from_I_f.cc: Likewise.
  205. * src/float/conv/cl_F_from_RA_f.cc: Likewise.
  206. * src/float/dfloat/conv/cl_I_to_double.cc: Likewise.
  207. * src/float/dfloat/conv/cl_RA_to_double.cc: Likewise.
  208. * src/float/dfloat/elem/cl_DF_from_I.cc: Likewise.
  209. * src/float/dfloat/elem/cl_DF_from_RA.cc: Likewise.
  210. * src/float/dfloat/elem/cl_DF_scale.cc: Likewise.
  211. * src/float/dfloat/misc/cl_DF_digits.cc: Likewise.
  212. * src/float/dfloat/misc/cl_DF_precision.cc: Likewise.
  213. * src/float/elem/cl_F_scale.cc: Likewise.
  214. * src/float/ffloat/conv/cl_I_to_float.cc: Likewise.
  215. * src/float/ffloat/conv/cl_RA_to_float.cc: Likewise.
  216. * src/float/ffloat/elem/cl_FF_from_I.cc: Likewise.
  217. * src/float/ffloat/elem/cl_FF_from_RA.cc: Likewise.
  218. * src/float/ffloat/elem/cl_FF_scale.cc: Likewise.
  219. * src/float/ffloat/misc/cl_FF_digits.cc: Likewise.
  220. * src/float/ffloat/misc/cl_FF_precision.cc: Likewise.
  221. * src/float/input/cl_F_read.cc: Likewise.
  222. * src/float/lfloat/algebraic/cl_LF_sqrt.cc: Likewise.
  223. * src/float/lfloat/elem/cl_LF_1plus.cc: Likewise.
  224. * src/float/lfloat/elem/cl_LF_I_div.cc: Likewise.
  225. * src/float/lfloat/elem/cl_LF_I_mul.cc: Likewise.
  226. * src/float/lfloat/elem/cl_LF_div.cc: Likewise.
  227. * src/float/lfloat/elem/cl_LF_from_I.cc: Likewise.
  228. * src/float/lfloat/elem/cl_LF_from_RA.cc: Likewise.
  229. * src/float/lfloat/elem/cl_LF_fround.cc: Likewise.
  230. * src/float/lfloat/elem/cl_LF_ftrunc.cc: Likewise.
  231. * src/float/lfloat/elem/cl_LF_futrunc.cc: Likewise.
  232. * src/float/lfloat/elem/cl_LF_scale.cc: Likewise.
  233. * src/float/lfloat/elem/cl_LF_to_I.cc: Likewise.
  234. * src/float/lfloat/misc/cl_LF_digits.cc: Likewise.
  235. * src/float/lfloat/misc/cl_LF_idecode.cc: Likewise.
  236. * src/float/lfloat/misc/cl_LF_leninc.cc: Likewise.
  237. * src/float/lfloat/misc/cl_LF_lenincx.cc: Likewise.
  238. * src/float/lfloat/misc/cl_LF_precision.cc: Likewise.
  239. * src/float/lfloat/misc/cl_LF_shortenrel.cc: Likewise.
  240. * src/float/lfloat/misc/cl_LF_shortenwith.cc: Likewise.
  241. * src/float/misc/cl_F_digits.cc: Likewise.
  242. * src/float/misc/cl_F_epsneg.cc: Likewise.
  243. * src/float/misc/cl_F_epspos.cc: Likewise.
  244. * src/float/misc/cl_F_leastneg.cc: Likewise.
  245. * src/float/misc/cl_F_leastpos.cc: Likewise.
  246. * src/float/misc/cl_F_mostneg.cc: Likewise.
  247. * src/float/misc/cl_F_mostpos.cc: Likewise.
  248. * src/float/misc/cl_F_precision.cc: Likewise.
  249. * src/float/misc/cl_F_rational.cc: Likewise.
  250. * src/float/misc/cl_F_shortenrel.cc: Likewise.
  251. * src/float/output/cl_F_dprint.cc: Likewise.
  252. * src/float/random/cl_F_random.cc: Likewise.
  253. * src/float/sfloat/elem/cl_SF_from_I.cc: Likewise.
  254. * src/float/sfloat/elem/cl_SF_from_RA.cc: Likewise.
  255. * src/float/sfloat/elem/cl_SF_scale.cc: Likewise.
  256. * src/float/sfloat/misc/cl_SF_digits.cc: Likewise.
  257. * src/float/sfloat/misc/cl_SF_precision.cc: Likewise.
  258. * src/float/transcendental/cl_F_atanhx.cc: Likewise.
  259. * src/float/transcendental/cl_F_atanx.cc: Likewise.
  260. * src/float/transcendental/cl_F_catalanconst_f.cc: Likewise.
  261. * src/float/transcendental/cl_F_cos.cc: Likewise.
  262. * src/float/transcendental/cl_F_cosh.cc: Likewise.
  263. * src/float/transcendental/cl_F_coshsinh.cc: Likewise.
  264. * src/float/transcendental/cl_F_cossin.cc: Likewise.
  265. * src/float/transcendental/cl_F_eulerconst_f.cc: Likewise.
  266. * src/float/transcendental/cl_F_exp1_f.cc: Likewise.
  267. * src/float/transcendental/cl_F_expx.cc: Likewise.
  268. * src/float/transcendental/cl_F_ln10_f.cc: Likewise.
  269. * src/float/transcendental/cl_F_ln2_f.cc: Likewise.
  270. * src/float/transcendental/cl_F_lnx.cc: Likewise.
  271. * src/float/transcendental/cl_F_pi_f.cc: Likewise.
  272. * src/float/transcendental/cl_F_sin.cc: Likewise.
  273. * src/float/transcendental/cl_F_sinh.cc: Likewise.
  274. * src/float/transcendental/cl_F_sinhx.cc: Likewise.
  275. * src/float/transcendental/cl_F_sinx.cc: Likewise.
  276. * src/float/transcendental/cl_F_tran.h: Likewise.
  277. * src/float/transcendental/cl_F_zeta_int_f.cc: Likewise.
  278. * src/float/transcendental/cl_LF_atan_recip.cc: Likewise.
  279. * src/float/transcendental/cl_LF_atanh_recip.cc: Likewise.
  280. * src/float/transcendental/cl_LF_catalanconst.cc: Likewise.
  281. * src/float/transcendental/cl_LF_coshsinh_aux.cc: Likewise.
  282. * src/float/transcendental/cl_LF_cossin_aux.cc: Likewise.
  283. * src/float/transcendental/cl_LF_eulerconst.cc: Likewise.
  284. * src/float/transcendental/cl_LF_exp1.cc: Likewise.
  285. * src/float/transcendental/cl_LF_exp_aux.cc: Likewise.
  286. * src/float/transcendental/cl_LF_pi.cc: Likewise.
  287. * src/float/transcendental/cl_LF_ratseries.cc: Likewise.
  288. * src/float/transcendental/cl_LF_ratseries_.cc: Likewise.
  289. * src/float/transcendental/cl_LF_ratseries_a.cc: Likewise.
  290. * src/float/transcendental/cl_LF_ratseries_ab.cc: Likewise.
  291. * src/float/transcendental/cl_LF_ratseries_b.cc: Likewise.
  292. * src/float/transcendental/cl_LF_ratseries_p.cc: Likewise.
  293. * src/float/transcendental/cl_LF_ratseries_pa.cc: Likewise.
  294. * src/float/transcendental/cl_LF_ratseries_pab.cc: Likewise.
  295. * src/float/transcendental/cl_LF_ratseries_pb.cc: Likewise.
  296. * src/float/transcendental/cl_LF_ratseries_pq.cc: Likewise.
  297. * src/float/transcendental/cl_LF_ratseries_pqa.cc: Likewise.
  298. * src/float/transcendental/cl_LF_ratseries_pqab.cc: Likewise.
  299. * src/float/transcendental/cl_LF_ratseries_pqb.cc: Likewise.
  300. * src/float/transcendental/cl_LF_ratseries_q.cc: Likewise.
  301. * src/float/transcendental/cl_LF_ratseries_qa.cc: Likewise.
  302. * src/float/transcendental/cl_LF_ratseries_qab.cc: Likewise.
  303. * src/float/transcendental/cl_LF_ratseries_qb.cc: Likewise.
  304. * src/float/transcendental/cl_LF_ratseries_stream_pq.cc: Likewise.
  305. * src/float/transcendental/cl_LF_ratseries_stream_pqa.cc: Likewise.
  306. * src/float/transcendental/cl_LF_ratseries_stream_pqab.cc: Likewise.
  307. * src/float/transcendental/cl_LF_ratseries_stream_pqb.cc: Likewise.
  308. * src/float/transcendental/cl_LF_ratsumseries_pqcd.cc: Likewise.
  309. * src/float/transcendental/cl_LF_ratsumseries_pqcd_aux.cc: Likewise.
  310. * src/float/transcendental/cl_LF_ratsumseries_pqd.cc: Likewise.
  311. * src/float/transcendental/cl_LF_ratsumseries_pqd_aux.cc: Likewise.
  312. * src/float/transcendental/cl_LF_tran.h: Likewise.
  313. * src/float/transcendental/cl_LF_zeta3.cc: Likewise.
  314. * src/float/transcendental/cl_LF_zeta_int.cc: Likewise.
  315. * src/integer/algebraic/cl_I_rootp_I.cc: Likewise.
  316. * src/integer/algebraic/cl_I_rootp_aux.cc: Likewise.
  317. * src/integer/bitwise/cl_I_ash.cc: Likewise.
  318. * src/integer/bitwise/cl_I_ash_I.cc: Likewise.
  319. * src/integer/bitwise/cl_I_byte.h: Likewise.
  320. * src/integer/bitwise/cl_I_fullbyte.cc: Likewise.
  321. * src/integer/bitwise/cl_I_ilength.cc: Likewise.
  322. * src/integer/bitwise/cl_I_ldb.cc: Likewise.
  323. * src/integer/bitwise/cl_I_ldbtest.cc: Likewise.
  324. * src/integer/bitwise/cl_I_ldbx.cc: Likewise.
  325. * src/integer/bitwise/cl_I_ldbxtest.cc: Likewise.
  326. * src/integer/bitwise/cl_I_logbitp.cc: Likewise.
  327. * src/integer/bitwise/cl_I_logbitp_I.cc: Likewise.
  328. * src/integer/bitwise/cl_I_logcount.cc: Likewise.
  329. * src/integer/bitwise/cl_I_mkf.cc: Likewise.
  330. * src/integer/bitwise/cl_I_mkfx.cc: Likewise.
  331. * src/integer/cl_I.h: Likewise.
  332. * src/integer/conv/cl_I_to_digits.cc: Likewise.
  333. * src/integer/conv/cl_I_digits_need.cc: Likewise.
  334. * src/integer/conv/cl_I_from_digits.cc: Likewise.
  335. * src/integer/gcd/cl_I_gcd.cc: Likewise.
  336. * src/integer/gcd/cl_I_xgcd.cc: Likewise.
  337. * src/integer/misc/cl_I_eqhashcode.cc: Likewise.
  338. * src/integer/misc/cl_I_ord2.cc: Likewise.
  339. * src/integer/misc/cl_I_power2p.cc: Likewise.
  340. * src/integer/output/cl_I_cached_power.h (cached_power_table): allow
  341. for 40 elements.
  342. * src/integer/output/cl_I_decstring.cc: Use uintC instead of uintL
  343. where appropriate.
  344. * src/integer/output/cl_I_print.cc: Likewise.
  345. * src/integer/output/cl_I_print_string.cc: Likewise.
  346. * src/modinteger/cl_MI.cc: Likewise.
  347. * src/modinteger/cl_MI_lshift.cc: Likewise.
  348. * src/modinteger/cl_MI_montgom.h: Likewise.
  349. * src/modinteger/cl_MI_pow2.h: Likewise.
  350. * src/modinteger/cl_MI_pow2m1.h: Likewise.
  351. * src/modinteger/cl_MI_pow2p1.h: Likewise.
  352. * src/modinteger/cl_MI_rshift.cc: Likewise.
  353. * src/modinteger/cl_MI_std.h: Likewise.
  354. * src/numtheory/cl_IF_millerrabin.cc: Likewise.
  355. * src/numtheory/cl_nt_isprobprime.cc: Likewise.
  356. * src/numtheory/cl_nt_sqrtmodp.cc: Likewise.
  357. * src/polynomial/elem/cl_UP_GF2.h: Likewise.
  358. * src/real/conv/cl_F_from_R_f.cc: Likewise.
  359. * src/real/format-output/cl_fmt_floatstring.cc: Likewise.
  360. * src/real/input/cl_R_read.cc: Likewise.
  361. * src/vector/cl_GV_I.cc: Likewise.
  362. * src/vector/cl_GV_I_copy.cc: Likewise.
  363. * src/vector/cl_GV_number.cc: Likewise.
  364. * src/vector/cl_GV_number_copy.cc: Likewise.
  365. * src/vector/cl_SV_copy.cc: Likewise.
  366. * src/vector/cl_SV_number.cc: Likewise.
  367. * src/vector/cl_SV_ringelt.cc: Likewise.
  368. * tests/main.cc: Likewise.
  369. * tests/test_I_ilength.cc: Likewise.
  370. * tests/test_I_ord2.cc: Likewise.
  371. 2006-04-19 Bruno Haible <bruno@clisp.org>
  372. Prepare for autoconf-2.60.
  373. * general.m4 (CL_CC_WORKS): Include <stdlib.h>, for exit() declaration.
  374. * longdouble.m4 (CL_LONGDOUBLE): Likewise.
  375. * longlong.m4 (CL_LONGLONG): Likewise.
  376. * times.m4 (CL_TIMES_CLOCK): Likewise.
  377. Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
  378. 2005-12-04 Bruno Haible <bruno@clisp.org>
  379. * src/integer/conv/cl_I_to_digits.cc (I_to_digits_noshrink): Set
  380. erg->len at the end.
  381. 2005-12-04 Bruno Haible <bruno@clisp.org>
  382. Extend the fixnum range from 32 bits to 61 bits on 64-bit platforms.
  383. * doc/cln.tex (gcd, jacobi): Take 'long' instead of 'int32' arguments.
  384. * include/cln/object.h (cl_value_shift): Define as 3, not 32, in the
  385. 64-bit case.
  386. * include/cln/types.h (intVsize): New macro.
  387. (sintV, uintV): New types.
  388. * include/cln/integer.h (gcd): Take uintV arguments.
  389. * include/cln/numtheory.h (jacobi): Take sintV arguments.
  390. * src/complex/input/cl_N_read.cc (read_complex): Call FN_to_UV instead
  391. of FN_to_UL.
  392. * src/complex/transcendental/cl_C_expt_C.cc: Likewise.
  393. * src/float/dfloat/elem/cl_DF_scale_I.cc: Use uintV instead of uintL
  394. * src/float/dfloat/elem/cl_DF_from_RA.cc: Don't assume values >= 2^53
  395. and < 2^55 are always bignums.
  396. where appropriate.
  397. * src/float/ffloat/conv/cl_RA_to_float.cc: Call FN_to_UV instead of
  398. FN_to_UL.
  399. * src/float/ffloat/elem/cl_FF_from_RA.cc: Likewise.
  400. * src/float/ffloat/elem/cl_FF_scale_I.cc: Call FN_to_V instead of
  401. FN_to_L.
  402. * src/float/lfloat/elem/cl_LF_scale_I.cc: Likewise.
  403. * src/float/output/cl_F_dprint.cc: Likewise.
  404. * src/float/sfloat/elem/cl_SF_from_RA.cc: Call FN_to_UV instead of
  405. FN_to_UL.
  406. * src/float/sfloat/elem/cl_SF_scale_I.cc: Call FN_to_V instead of
  407. FN_to_L.
  408. * src/integer/cl_I.h (FN_to_UV): Renamed from FN_to_UL, change return
  409. type.
  410. (FN_to_V): Renamed from FN_to_L, change return type.
  411. (FN_V_zerop): Renamed from FN_L_zerop.
  412. (FN_V_minusp): Renamed from FN_L_minusp.
  413. (cl_I_constructor_from_L2, cl_I_constructor_from_UL2): Define as an
  414. inline function on 64-bit platforms.
  415. (V_to_I, UV_to_I): New macros.
  416. (pFN_maxlength_digits_at): Return an uintV instead of an uint32.
  417. (set_pFN_maxlength_digits_at): Take an uintV instead of an uint32.
  418. * src/integer/algebraic/cl_I_sqrtp.cc: Call FN_to_UV instead of
  419. FN_to_UL.
  420. * src/integer/bitwise/cl_I_ash_I.cc: Call FN_to_V instead of FN_to_L.
  421. * src/integer/bitwise/cl_I_ilength.cc: Likewise.
  422. * src/integer/bitwise/cl_I_log_aux.cc: Likewise.
  423. * src/integer/bitwise/cl_I_logbitp_I.cc: Likewise.
  424. * src/integer/bitwise/cl_I_logcount.cc: Likewise.
  425. * src/integer/bitwise/cl_I_logtest.cc: Likewise.
  426. * src/integer/conv/cl_I_from_L2.cc: Don't produce code on 64-bit
  427. platforms.
  428. * src/integer/conv/cl_I_from_UL2.cc: Likewise.
  429. * src/integer/conv/cl_I_from_NDS.cc: Update.
  430. * src/integer/conv/cl_I_from_Q.cc: Remove cast to sint32.
  431. * src/integer/conv/cl_I_from_UQ.cc: Remove cast to uint32.
  432. * src/integer/conv/cl_I_to_L.cc: Check again fixnum that needs more
  433. than 32 bits.
  434. * src/integer/conv/cl_I_to_Q.cc: Call FN_to_V instead of FN_to_L.
  435. * src/integer/conv/cl_I_to_UL.cc: Likewise.
  436. * src/integer/conv/cl_I_to_UQ.cc: Likewise.
  437. * src/integer/elem/cl_I_div.cc: Treat fixnums that need more than 32
  438. bits like bignums.
  439. * src/integer/elem/cl_I_minus.cc: Call FN_to_V instead of FN_to_L.
  440. * src/integer/elem/cl_I_mul.cc: Likewise.
  441. * src/integer/elem/cl_I_plus.cc: Likewise.
  442. * src/integer/elem/cl_I_square.cc: Likewise.
  443. * src/integer/elem/cl_I_uminus.cc: Likewise.
  444. * src/integer/gcd/cl_I_gcd.cc: Likewise.
  445. * src/integer/gcd/cl_low_gcd.cc (gcd): Take uintV arguments.
  446. * src/integer/hash/cl_I_hashcode.cc: Call FN_to_V instead of FN_to_L.
  447. * src/integer/input/cl_I_read.cc (read_integer): Call FN_to_UV instead
  448. of FN_to_UL.
  449. * src/integer/misc/cl_I_ord2.cc (ord2): Call ord2_64 on 64-bit
  450. platforms.
  451. * src/integer/misc/cl_I_power2p.cc: Call FN_to_UV instead of FN_to_UL.
  452. * src/integer/misc/combin/cl_I_doublefactorial.cc (doublefakul_table):
  453. Extend table for larger fixnums.
  454. (doublefactorial): Update.
  455. * src/integer/misc/combin/cl_I_factorial.cc (fakul_table): Extend table
  456. for larger fixnums.
  457. (factorial): Update.
  458. * src/modinteger/cl_MI_fix16.h: Call FN_to_UV instead of FN_to_UL.
  459. * src/modinteger/cl_MI_fix29.h: Likewise.
  460. * src/modinteger/cl_MI_fix32.h: Likewise.
  461. * src/modinteger/cl_MI_std.h: Likewise.
  462. * src/numtheory/cl_nt_cornacchia4.cc: Call FN_to_V instead of FN_to_L.
  463. * src/numtheory/cl_nt_jacobi.cc: Likewise.
  464. * src/numtheory/cl_nt_jacobi_low.cc (jacobi_aux): Take uintV arguments
  465. instead of uint32 arguments.
  466. (jacobi): Take sintV argument instead of a sint32 argument.
  467. * src/rational/input/cl_RA_read.cc: Call FN_to_UV instead of FN_to_UL.
  468. * src/real/input/cl_R_read.cc: Likewise.
  469. * src/vector/cl_GV_I.cc: Likewise.
  470. * tests/timefact.cc: Call FN_to_V instead of FN_to_L.
  471. 2005-12-04 Bruno Haible <bruno@clisp.org>
  472. More complete 64-bit division macros.
  473. * src/base/cl_low.h (divu_6432_3232_w): Choose a different macro
  474. expansion on x86_64.
  475. (divu_6432_6432): New macro.
  476. (divu_6464_6464): Choose a different macro expansion for all CPUs
  477. except sparc64 and x86_64.
  478. (divu_12864_6464): Define NEED_VAR_divu_64_rest here.
  479. * src/base/low/cl_low_div.cc (divu_64_rest): Avoid defining it twice.
  480. (divu_6464_6464_): New function.
  481. 2005-12-04 Bruno Haible <bruno@clisp.org>
  482. * src/base/cl_low.h (ord2_64): New macro.
  483. 2005-12-02 Bruno Haible <bruno@clisp.org>
  484. * src/base/cl_low.h (mulu64) [x86_64]: Change asm restriction, since
  485. mulq doesn't accept immediate arguments.
  486. 2005-11-26 Bruno Haible <bruno@clisp.org>
  487. * src/base/cl_low.h (GENERIC_INTEGERLENGTH32): New macro.
  488. (integerlength64): Define using integerlength32 if integerlength32
  489. is not defined generically.
  490. 2005-11-26 Bruno Haible <bruno@clisp.org>
  491. * src/base/cl_low.h (mulu32) [SPARC64]: Remove rd instruction, since
  492. umul returns the complete 64-bit product in a register.
  493. (mulu32_w) [SPARC64]: Prefer umul over mulx instruction.
  494. (divu_6432_3232_w) [SPARC64]: Prefer umul/udiv over mulx/udivx
  495. instructions.
  496. 2005-11-26 Bruno Haible <bruno@clisp.org>
  497. * src/base/cl_low.h (divu_3216_1616): Prepend underscore to local
  498. variables.
  499. 2005-11-26 Bruno Haible <bruno@clisp.org>
  500. * src/base/cl_low.h (ord2_32): Parenthesize macro argument.
  501. 2005-12-17 Richard B. Kreckel <kreckel@ginac.de>
  502. * Created branch cln_1-1 for maintenance patches.
  503. This is the main branch, which will eventually become CLN 1.2.0.
  504. 2005-12-15 Dmitry V. Kustov <kustov@telex221.ru>
  505. * src/base/random/cl_random_from.cc: Add support for OpenBSD.
  506. 2005-11-23 Richard B. Kreckel <kreckel@ginac.de>
  507. * Version 1.1.11 released.
  508. 2005-11-20 Richard B. Kreckel <kreckel@ginac.de>
  509. * src/integer/conv/cl_I_cached_power.h: New file.
  510. * src/integer/conv/cl_I_cached_power.cc: New file.
  511. Contains power_table and cached_power_table previously...
  512. * src/integer/conv/cl_I_to_digits.cc: ...here.
  513. * src/integer/conv/cl_I_from_digits.cc: Use cached powers.
  514. 2005-11-02 Richard B. Kreckel <kreckel@ginac.de>
  515. * src/integer/conv/cl_I_from_digits.cc: Made input of all numbers in
  516. non-power-of-two base much faster.
  517. * tests/test_I_io.cc: New file...
  518. * tests/Makefile.in, tests/test_I.cc: ...used here.
  519. 2005-10-22 Richard B. Kreckel <kreckel@ginac.de>
  520. * Version 1.1.10 released.
  521. 2005-10-22 Richard B. Kreckel <kreckel@ginac.de>
  522. * src/Makefile.in: Accept CPPFLAGS from environment.
  523. * examples/Makefile.in: Likewise.
  524. * benchmarks/Makefile.in: Likewise.
  525. * tests/Makefile.in: Likewise.
  526. 2005-08-30 Richard B. Kreckel <kreckel@ginac.de>
  527. * include/cln/modules.h (CL_OUTPUT_LABEL): Work around redundant
  528. duplication of basic blocks on m68k.
  529. 2005-08-30 Richard B. Kreckel <kreckel@ginac.de>
  530. * include/cln/modules.h (CL_JUMP_TO): Fix mips* brokenness.
  531. 2005-08-27 Bruno Haible <bruno@clisp.org>
  532. Split aclocal.m4 into individual files.
  533. * m4/alloca.m4, m4/as-underscore.m4, m4/c++-constructors.m4:
  534. * m4/fpu_control.m4, m4/general.m4, m4/gettimeofday.m4:
  535. * m4/longdouble.m4, m4/longlong.m4, m4/param.m4, m4/perror.m4:
  536. * m4/proto.m4, m4/rusage.m4, m4/times.m4:
  537. New files, extracted from autoconf/aclocal.m4.
  538. * autoconf/aclocal.m4: m4_include them.
  539. * Makefile.devel (AUTOCONF_MACROS): New variable.
  540. (configure): Depend on it.
  541. (CLISP_M4DIR): Remove variable.
  542. (autoconf/aclocal.m4): Remove rule.
  543. 2005-08-27 Bruno Haible <bruno@clisp.org>
  544. * src/integer/bitwise/cl_I_ash_I.cc (ash): Avoid shifting a 32-bit
  545. zero value by more than 31 bits.
  546. 2005-08-27 Bruno Haible <bruno@clisp.org>
  547. Make the long-float overflow check work on 64-bit platforms.
  548. * src/float/lfloat/cl_LF.h (LF_exp_mid, LF_exp_high): Define as
  549. 'unsigned int', not 'unsigned long'.
  550. 2005-08-27 Bruno Haible <bruno@clisp.org>
  551. * include/cln/modules.h (CL_OUTPUT_LABEL): Work around redundant
  552. duplication of basic blocks by g++ 4.0.
  553. See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23345>.
  554. 2005-08-27 Bruno Haible <bruno@clisp.org>
  555. Make it possible to cross-compile CLN.
  556. * m4/intparam.m4: New file.
  557. * m4/floatparam.m4: New file.
  558. * autoconf/aclocal.m4: Include both.
  559. (CL_MACHINE): Add an additional CROSS_MACRO parameter.
  560. * configure.ac (CL_MACHINE): When cross-compiling, use
  561. CL_INTPARAM_CROSS and CL_FLOATPARAM_CROSS.
  562. 2005-08-27 Bruno Haible <bruno@clisp.org>
  563. Define HAVE_LONGLONG and HAVE_LONGDOUBLE when cross-compiling.
  564. * autoconf/aclocal.m4 (CL_LONGLONG, CL_LONGDOUBLE): When cross-
  565. compiling, use the test code from gnulib.
  566. 2005-08-27 Bruno Haible <bruno@clisp.org>
  567. * autoconf/aclocal.m4 (CL_RUSAGE): Fix error when cross-compiling.
  568. 2005-08-16 Richard B. Kreckel <kreckel@ginac.de>
  569. The patch of 2005-05-01 made it impossible to test the type of a cl_UP
  570. by comparing with &cl_class_univpoly_ring. We need an alternative:
  571. * include/cln/object.h (cl_class_flags_modint_ring): New #define...
  572. * src/polynomial/elem/cl_UP.cc (cl_class_univpoly_ring): ...used here.
  573. * src/polynomial/elem/cl_UP_GF2.h: Likewise.
  574. * src/polynomial/elem/cl_UP_MI.h: Likewise.
  575. * src/polynomial/elem/cl_UP_gen.h: Likewise.
  576. * src/polynomial/elem/cl_UP_number.h: Likewise.
  577. 2005-08-15 Richard B. Kreckel <kreckel@ginac.de>
  578. * m4/cc.m4 (CL_AS_NOEXECSTACK): New macro...
  579. * configure.ac: ...used here for setting ASMFLAGS...
  580. * src/Makefile.in: ...which are used here.
  581. 2005-08-02 Andreas Jochens <aj@andaco.de>
  582. * include/cln/config.h.in: Add support for PowerPC 64 CPU.
  583. * include/cln/modules.h: Likewise.
  584. * include/cln/object.h: Likewise.
  585. * include/cln/types.h: Likewise.
  586. 2005-07-24 Richard B. Kreckel <kreckel@ginac.de>
  587. Make out of the box build on x86_64 system with complete 32 bit
  588. userland possible
  589. * include/cln/config.h.in: Don't #define __x86_64__ when
  590. __i386__ is defined.
  591. * src/base/digitseq/cl_asm_x86_64_.cc: New file.
  592. * doc/cln.tex: Revert workaround description introduced 2005-05-02.
  593. 2005-06-10 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  594. * Makefile.in: Don't enter nonexisting directories.
  595. 2005-05-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  596. Speed up the linking step
  597. * src/Makefile.in: Use -objectlist for linking libcln.la.
  598. 2005-05-15 Richard B. Kreckel <kreckel@ginac.de>
  599. * autoconf/ltmain.sh: Upgrade to libtool-1.5.16.
  600. * m4/libtool.m4: Upgrade to libtool-1.5.16 (without Comeau patch).
  601. 2005-05-02 Richard B. Kreckel <kreckel@ginac.de>
  602. * doc/cln.tex: Document what to do on a x86_64 machine with 32-bit
  603. userland.
  604. 2005-05-01 Richard B. Kreckel <kreckel@ginac.de>
  605. Fix crashes in find_univpoly_ring and related functions
  606. * include/cln/modinteger.h: Remove vptr from cl_heap_modint_ring;
  607. remove declaration of cl_class cl_class_modint_ring.
  608. * include/cln/univpoly.h: Remove vptr from cl_heap_univpoly_ring;
  609. remove declaration of cl_class_univpoly_ring.
  610. * include/cln/object.h: cl_class_flags_modint_ring: New #define...
  611. * src/modinteger/cl_MI.cc: ...used in cl_class_modint_ring.
  612. * src/modinteger/cl_MI_fix16.h: No vptr, but static dtor and type flag.
  613. * src/modinteger/cl_MI_fix29.h: Likewise.
  614. * src/modinteger/cl_MI_fix32.h: Likewise.
  615. * src/modinteger/cl_MI_int32.h: Likewise.
  616. * src/modinteger/cl_MI_montgom.h: Likewise.
  617. * src/modinteger/cl_MI_pow2: Likewise.
  618. * src/modinteger/cl_MI_pow2m1.h: Likewise.
  619. * src/modinteger/cl_MI_pow2p1.h: Likewise.
  620. * src/modinteger/cl_MI_std.h: Likewise.
  621. * src/polynomial/elem/cl_UP.cc (cl_make_univpoly_ring): Compare with
  622. cl_class_flags_modint_ring, not with cl_class_modint_ring.
  623. * src/polynomial/elem/cl_UP_GF2.h (cl_class_num_univpoly_ring): New.
  624. * src/polynomial/elem/cl_UP_MI.h (cl_class_modint_univpoly_ring): New.
  625. * src/polynomial/elem/cl_UP_gen.h (cl_class_gen_univpoly_ring): New.
  626. * src/polynomial/elem/cl_UP_number.h (cl_class_num_univpoly_ring): New.
  627. Reported by Ralf Goertz <R_Goertz@web.de>.
  628. 2005-04-29 Richard B. Kreckel <kreckel@ginac.de>
  629. Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  630. * m4/cc.m4: Emit a warning if g++ is used and optimization turned off.
  631. 2005-04-24 Richard B. Kreckel <kreckel@ginac.de>
  632. Make GCC compiler flags default to -O
  633. * m4/cc.m4: New file...
  634. * configure.ac: ...used here.
  635. * autoconf/aclocal.m4: Regenerate.
  636. 2005-04-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  637. * include/cln/string.h: Declare cl_string.
  638. 2005-03-17 Richard B. Kreckel <kreckel@ginac.de>
  639. * autoconf/ltmain.sh: Upgrade to libtool-1.5.14.
  640. * m4/libtool.m4: Upgrade to libtool-1.5.14 with Comeau patch.
  641. * autoconf/aclocal.m4: Regenerate.
  642. 2005-03-15 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  643. * src/Makefile.in: Use $CXX instead of $CC when linking.
  644. 2005-02-27 Richard B. Kreckel <kreckel@ginac.de>
  645. * examples/perfnum.cc: update to presumed 42st Mersenne prime.
  646. 2004-11-28 Richard B. Kreckel <kreckel@ginac.de>
  647. Disambiguate binary operators of CLN types with float/double
  648. * include/cln/dfloat.h: Add binary operator overloads for arguments of
  649. type double.
  650. * include/cln/ffloat.h: Likewise, for arguments of type float.
  651. * include/cln/float.h: Likewise, both for arguments of types double and
  652. float.
  653. * include/cln/real.h: Likewise.
  654. Reported by Isidro Cachadiña Gutiérrez <icacha@unex.es>.
  655. 2004-11-03 Richard B. Kreckel <kreckel@ginac.de>
  656. * Version 1.1.9 released.
  657. 2004-10-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  658. * src/Makefile.in: Let config.status set LDFLAGS.
  659. 2004-10-27 Peter Breitenlohner <peb@mppmu.mpg.de>
  660. * cln.pc.in: Fix typo.
  661. * Makefile.in (INSTALL_SCRIPT): Added, to be used for scripts like
  662. cln-config. Allows us to do special things to binaries, like
  663. installing them with install -s.
  664. * doc/Makefile.in: add/remove the cln.info from the installed
  665. $(infodir)/dir unless this is debian install-info (code copied from
  666. what GNU automake would produce).
  667. 2004-10-26 Richard B. Kreckel <kreckel@ginac.de>
  668. * src/integer/input/cl_I_read_stream.cc (read_integer): Fix a bug
  669. that caused radix specifiers to not work when reading from a stream.
  670. * src/rational/input/cl_RA_read_stream.cc (read_rational): Likewise.
  671. * src/real/input/cl_R_read_stream.cc (read_real): Likewise.
  672. * src/float/input/cl_F_read_stream.cc (read_float): Likewise.
  673. * src/complex/input/cl_N_read_stream.cc (read_complex): Likewise.
  674. 2004-10-25 Richard B. Kreckel <kreckel@ginac.de>
  675. * src/base/cl_low.h: Add mulu64 assembler macro for ia64.
  676. 2004-10-24 Richard B. Kreckel <kreckel@ginac.de>
  677. * src/base/cl_low.h: Add mul and div macros for x86_64.
  678. 2004-10-23 Richard B. Kreckel <kreckel@ginac.de>
  679. * src/integer/conv/cl_I_from_digits.cc (digits_to_I): Fix thinko in
  680. new code for base power of two.
  681. 2004-10-22 Richard B. Kreckel <kreckel@ginac.de>
  682. * src/integer/conv/cl_I_to_digits (I_to_digits): Fix an elusive stack
  683. overwriting problem. That was the real cause for Debian bug#246319.
  684. * src/integer/output/cl_I_print.cc (print_integer): Revert workaround
  685. for the bug fixed above.
  686. 2004-10-20 Richard B. Kreckel <kreckel@ginac.de>
  687. * include/cln/types.h: Use 64 bit digits on x86_64 CPU.
  688. 2004-10-12 Richard B. Kreckel <kreckel@ginac.de>
  689. * src/integer/conv/cl_I_from_digits.cc (digits_to_I): Speedup when
  690. the base is a power of two.
  691. 2004-10-05 Richard B. Kreckel <kreckel@ginac.de>
  692. * src/integer/conv/cl_I_to_digits.cc (I_to_digits): Fix bug in base 32.
  693. 2004-09-27 Richard B. Kreckel <kreckel@ginac.de>
  694. Support for little-endian Mips, second shot
  695. * src/base/digitseq/cl_asm_mipsel_.cc: New file...
  696. * src/base/digitseq/cl_asm_cc: ...used here.
  697. * src/base/digitseq/cl_asm.h: Include cl_asm_mips.h for any endianness.
  698. * include/cln/object.h: Set alignment for mipsel explicitly.
  699. 2004-09-05 Richard B. Kreckel <kreckel@ginac.de>
  700. Support for little-endian Mips
  701. * include/cln/config.h.in: Add __mipsel__.
  702. * include/cln/modules.h: For Mips, this is endianness-agnostic.
  703. * src/base/digitseq/cl_asm_.cc, src/base/digitseq/cl_asm.h:
  704. Mask out assembler for little-endian Mips.
  705. 2004-08-30 Bruno Haible <bruno@clisp.org>
  706. * benchmarks/timebench2.sh: Multiply all repeat counts by 100.
  707. * benchmarks/timebench2.results: Add recent PowerPC G4 results.
  708. 2004-08-26 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  709. * examples/e.cc: remove extra semicolon.
  710. 2004-08-25 Bruno Haible <bruno@clisp.org>
  711. * autoconf/ltmain.sh: Upgrade to libtool-1.5.6.
  712. * m4/libtool.m4: New file, from libtool-1.5.6 with modifications:
  713. 2004-08-22 Bruno Haible <bruno@clisp.org>
  714. * m4/libtool.m4: Add support for Comeau C++ on Linux.
  715. Reported by Prof. Roberto Bagnara <bagnara@cs.unipr.it>.
  716. * autoconf/aclocal.m4: Regenerate.
  717. 2004-08-19 Bruno Haible <bruno@clisp.org>
  718. * include/cln/modules.h (CL_GLOBALIZE_JUMP_LABEL, CL_JUMP_TO): When
  719. converting a label to a string, use ASM_UNDERSCORE_PREFIX. Needed on
  720. MacOS X.
  721. Reported by Darren Bane <darren.bane@ul.ie>.
  722. 2004-07-01 Richard B. Kreckel <kreckel@ginac.de>
  723. * Version 1.1.8 released.
  724. 2004-06-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  725. * src/base/cl_macros.h: alloca(3) has size_t argument type.
  726. 2004-06-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  727. * include/cln/floatformat.h: Do define a type here.
  728. 2004-06-27 Richard B. Kreckel <kreckel@ginac.de>
  729. * include/cln/modules.h (CL_JUMP_TO): Fix AMD64 brokenness.
  730. 2004-06-23 Bruno Haible <bruno@clisp.org>
  731. * configure.ac: Pretend ftime() is not available. Needed by
  732. CL_TIMES_CLOCK.
  733. 2004-06-21 Ralf Stephan <ralf@ark.in-berlin.de>
  734. * doc/cln.tex: Document jacobi, isprobprime and nextprobprime.
  735. 2004-06-18 Richard B. Kreckel <kreckel@ginac.de>
  736. * rational/transcendental/cl_RA_logp.cc: fix bug where base is
  737. reciprocal of an integer.
  738. Reported by Niklas Knutsson <nq@altern.org>.
  739. 2004-06-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  740. * src/complex/ring/cl_C_ring.cc, src/integer/ring/cl_I_ring.cc,
  741. src/rational/ring/cl_RA_ring.cc, src/real/ring/cl_R_ring.cc:
  742. Make template specializations explicit.
  743. 2004-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  744. * src/complex/input/cl_N_read.cc, src/float/input/cl_F_read.cc,
  745. src/integer/input/cl_I_read.cc, src/rational/input/cl_RA_read.cc,
  746. src/real/input/cl_R_read.cc: Remove unused labels.
  747. 2004-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  748. * benchmarks/timebench1.cc, benchmarks/timebench2a.LiDIA.cc,
  749. benchmarks/timebench2a.cc, benchmarks/timebench2ap.cc,
  750. benchmarks/timebench2b.LiDIA.cc, benchmarks/timebench2b.cc,
  751. examples/atan_recip.cc, examples/atanh_recip.cc,
  752. examples/contfrac.cc, examples/e.cc, examples/legendre.cc,
  753. examples/lucaslehmer.cc, examples/pi.cc, include/cln/GV.h,
  754. include/cln/SV.h, include/cln/malloc.h, include/cln/modules.h,
  755. include/cln/object.h, include/cln/string.h, src/base/cl_abort.cc,
  756. src/base/cl_alloca.h, src/base/cl_malloc.cc,
  757. src/base/random/cl_random_from.cc,
  758. src/base/string/cl_spushstring_append.cc,
  759. src/base/string/cl_spushstring_push.cc,
  760. src/base/string/cl_st_debug.cc,
  761. src/base/string/input/cl_st_gettoken.cc,
  762. src/complex/input/cl_N_read.cc, src/float/input/cl_F_read.cc,
  763. src/float/output/cl_F_dprint.cc, src/integer/input/cl_I_read.cc,
  764. src/rational/input/cl_RA_read.cc,
  765. src/real/format-output/cl_fmt_integer.cc,
  766. src/real/format-output/cl_fmt_paddedstring.cc,
  767. src/real/input/cl_R_read.cc, src/timing/cl_t_current.cc,
  768. src/timing/cl_t_current2.cc, tests/exam.cc, tests/tests.cc,
  769. tests/timeLFRAmul.cc, tests/timeLFatan-compare.cc,
  770. tests/timeLFatan.cc, tests/timeLFatanh-compare.cc,
  771. tests/timeLFatanh.cc, tests/timeLFcos-compare.cc, tests/timeLFcos.cc,
  772. tests/timeLFcosh.cc, tests/timeLFexp-compare.cc, tests/timeLFexp.cc,
  773. tests/timeLFln-compare.cc, tests/timeLFln.cc,
  774. tests/timeLFsin-compare.cc, tests/timeLFsin.cc, tests/timeLFsinh.cc,
  775. tests/timeLFsqrt.cc, tests/timeMImisc5.cc, tests/timeMIpow2div.cc,
  776. tests/timeMIpow2recip.cc, tests/timeRALFdiv.cc, tests/timeRAtoLF.cc,
  777. tests/timeUPMImul.cc, tests/timecatalan.cc, tests/timediv.cc,
  778. tests/timediv2adic-compare.cc, tests/timediv2adic.cc,
  779. tests/timeeuler.cc, tests/timeexp1.cc, tests/timefact.cc,
  780. tests/timegcd.cc, tests/timemul-compare.cc, tests/timemul.cc,
  781. tests/timepi.cc, tests/timeprint-compare.cc, tests/timeprint.cc,
  782. tests/timerecip2adic-compare.cc, tests/timerecip2adic.cc,
  783. tests/timesqrt.cc, tests/timesqrtmodp.cc, tests/timesquare.cc,
  784. tests/timezeta3.cc: Change all C include headers to ISO style
  785. within C++ code.
  786. 2004-06-10 Richard B. Kreckel <kreckel@ginac.de>
  787. * examples/perfnum.cc: update to presumed 41st Mersenne prime.
  788. 2004-05-02 Richard B. Kreckel <kreckel@ginac.de>
  789. * Version 1.1.7 released.
  790. 2004-05-02 Richard B. Kreckel <kreckel@ginac.de>
  791. * examples/pi.cc and examples/pi.1: New files.
  792. * examples/Makefile.in: Build the pi executable.
  793. 2004-05-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  794. * src/Makefile.in: Fix for parallel build: wait for subdir objects to
  795. be finished before creating the library.
  796. 2004-04-30 Richard B. Kreckel <kreckel@ginac.de>
  797. * src/integer/output/cl_I_print.cc (print_integer): workaround
  798. GCC compiler bug (cf. Debian bug#246319).
  799. 2004-03-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  800. * m4/gmp.m4 (CL_GMP_CHECK): Do not lose LIBS setting with config.cache
  801. enabled.
  802. 2004-03-08 Bruno Haible <bruno@clisp.org>
  803. * src/float/lfloat/elem/cl_LF_mul.cc (operator*): Fix the second
  804. underflow condition.
  805. * src/float/lfloat/algebraic/cl_LF_sqrt.cc (sqrt): Fix a bug with large
  806. uexp whereby SQRT of MOST-POSITIVE-LONG-FLOAT was less than 1.
  807. 2004-03-04 Richard B. Kreckel <kreckel@ginac.de>
  808. * Makefile.in (install): Add ${srcdir} for cln.m4.
  809. * m4/gmp.m4: quote macro names.
  810. Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
  811. 2004-01-01 Richard B. Kreckel <kreckel@ginac.de>
  812. * Version 1.1.6 released.
  813. 2004-01-01 Richard B. Kreckel <kreckel@ginac.de>
  814. * include/cln/univpoly.h, include/cln/univpoly_complex.h,
  815. include/cln//univpoly_integer.h, include/cln/univpoly_modint.h,
  816. include/cln/univpoly_rational.h, include/cln/univpoly_real.h,
  817. src/polynomial/elem/cl_UP_GF2.h, src/polynomial/elem/cl_UP_MI.h,
  818. src/polynomial/elem/cl_UP_gen.h, src/polynomial/elem/cl_UP_no_ring.cc,
  819. src/polynomial/elem/cl_UP_number.h (ldegree): New function.
  820. * doc/cln.tex: Document `ldegree'.
  821. 2003-12-29 Richard B. Kreckel <kreckel@ginac.de>
  822. Rework of autoconfiscation infrastructure
  823. * autoconf/config.{guess,sub}: Update to GNU version 2003-10-07.
  824. * autoconf/ltmain.sh: Update to GNU version 1.4.3.
  825. * autoconf/autoconf: Remove (from now on we assume autoconf is
  826. installed properly on the sytem).
  827. * autoconf/autoconf.m4: Likewise.
  828. * autoconf/autoconf.m4f: Likewise.
  829. * autoconf/acgeneral.m4: Likewise.
  830. * autoconf/acspecific.m4: Likewise.
  831. * autoconf/aclocal.m4: Regenerate.
  832. * autoconf/acinclude.m4: Remove (while moving the macros...)
  833. * m4/gmp.m4: New file (...to here).
  834. * Makefile.devel: Update to new scheme.
  835. * configure.ac: Likewise.
  836. * include/cln/GV_integer.h: Assume template specializations work.
  837. * include/cln/GV_modinteger.h: Likewise.
  838. * include/cln/config.h.in: Likewise, and drop HAVE_BOOL.
  839. * src/base/cl_base_config.h.in: Drop support for obsolete ftime(3).
  840. * src/base/random/cl_random_from.cc: Likewise.
  841. * src/timing/cl_base_config.h.in: Likewise.
  842. * src/timing/cl_t_current.cc: Likewise.
  843. 2003-12-27 Richard B. Kreckel <kreckel@ginac.de>
  844. * src/polynomial/cl_UP_gen.h (gen_minus): Fix case where first
  845. argument is zero.
  846. * src/polynomial/cl_UP_MI.h (modint_minus): Likewise.
  847. * src/polynomial/cl_UP_number.h (num_minus): Likewise.
  848. Reported by Munagala Ramanath <amberarrow@yahoo.com>.
  849. 2003-12-02 Richard B. Kreckel <kreckel@ginac.de>
  850. * examples/perfnum.cc: update to presumed 40th Mersenne prime.
  851. 2003-11-20 Christian Bauer <cbauer@ginac.de>
  852. Added pkg-config support
  853. * cln.pc.in: New file.
  854. * Makefile.in: Take care of cln.pc.
  855. * configure.ac: Likewise.
  856. 2003-08-06 Richard B. Kreckel <kreckel@ginac.de>
  857. * src/numtheory/cl_nt_sqrtmodp.cc: #undef _R.
  858. Reported by Andrew Rechnitzer <A.Rechnitzer@ms.unimelb.edu.au>.
  859. 2003-08-01 Richard Kreckel <kreckel@ginac.de>
  860. More dependent base resolution issues
  861. * src/base/hash/cl_hash.h (cl_heap_hashtable<T>::iterator()):
  862. portable syntactic simplification.
  863. * src/base/hash/cl_hashset.h: Preceed inherited members with this->.
  864. * src/base/hash/cl_hash1.h: Likewise for member functions.
  865. * src/base/hash/cl_hash2.h: Likewise.
  866. * src/base/hash/cl_hashuniq.h: Likewise.
  867. * src/base/hash/cl_hashuniqweak.h: Likewise.
  868. * src/base/hash/cl_hash.h: Revert explicit static member function
  869. lookup since that was GCC's fault.
  870. * src/base/hash/cl_hash2weak.h: Likewise.
  871. * src/base/hash/cl_hashuniqweak.h: Likewise.
  872. 2003-06-29 Richard Kreckel <kreckel@ginac.de>
  873. Dependent base resolution needed for GCC-3.4
  874. * include/cln/GV.h: Preceed inherited members with this->.
  875. * include/cln/SV.h: Likewise.
  876. * include/cln/object.h: Likewise.
  877. * src/base/hash/cl_hash1.h: Likewise.
  878. * src/base/hash/cl_hash1weak.h: Likewise.
  879. * src/base/hash/cl_hash2.h: Likewise.
  880. * src/base/hash/cl_hashuniq.h: Likewise.
  881. * src/base/hash/cl_hash.h: Make lookup of static member function
  882. explicit.
  883. * src/base/hash/cl_hash2weak.h: Likewise.
  884. * src/base/hash/cl_hashuniqweak.h: Likewise.
  885. * src/modinteger/cl_MI.cc: Make shell-comment a C-comment. Geez.
  886. 2003-02-24 Bruno Haible <bruno@clisp.org>
  887. * src/base/random/cl_random_from.cc (random_state::random_state): Add
  888. support for MacOS X.
  889. * src/modinteger/cl_MI.cc: #undef _R.
  890. Reported by Erann Gat <gat@jpl.nasa.gov>.
  891. 2002-08-03 Joerg Arndt <jj@suse.de>
  892. * include/cln/config.h.in: Add support for x86_64 CPU.
  893. * include/cln/modules.h: Likewise.
  894. * include/cln/types.h: Likewise.
  895. * include/cln/object.h: Likewise.
  896. 2002-06-08 Richard Kreckel <kreckel@ginac.de>
  897. * src/base/digitseq/cl_asm.h: ensure intCsize==16 when including
  898. m68k Assembler routines.
  899. * src/base/digitseq/cl_asm_.cc: Likewise.
  900. 2002-05-28 Richard Kreckel <kreckel@ginac.de>
  901. * Version 1.1.5 released.
  902. 2002-05-27 Richard Kreckel <kreckel@ginac.de>
  903. * include/cln/modules.h (CL_CONCATENATE): New macro.
  904. 2002-05-10 Richard Kreckel <kreckel@ginac.de>
  905. * doc/cln.tex (Building the library): Update recommendations for
  906. compiling on Tru64 using g++ 3.0 and 3.1.
  907. * README: Update homepage.
  908. 2002-05-05 Bruno Haible <bruno@clisp.org>
  909. * doc/cln.tex (Building the library): Give some recommendations for
  910. g++ 3.0 and 3.1.
  911. Force link-time references despite optimizations done by g++ 2.95
  912. and newer.
  913. * include/cln/modules.h (CL_FORCE_LINK): New macro.
  914. * Use CL_FORCE_LINK.
  915. * include/cln/GV_integer.h (cl_GV_I_debug_dummy): Likewise.
  916. * include/cln/GV_number.h (cl_GV_number_debug_dummy): Likewise.
  917. * include/cln/SV_number.h (cl_SV_number_debug_dummy): Likewise.
  918. * include/cln/SV_ringelt.h (cl_SV_ringelt_debug_dummy): Likewise.
  919. * include/cln/dfloat.h (cl_DF_debug_dummy): Likewise.
  920. * include/cln/ffloat.h (cl_FF_classes_dummy, cl_FF_debug_dummy):
  921. Likewise.
  922. * include/cln/integer.h (cl_I_classes_dummy, cl_I_debug_dummy):
  923. Likewise.
  924. * include/cln/lfloat.h (cl_LF_debug_dummy): Likewise.
  925. * include/cln/modinteger.h (cl_MI_debug_dummy): Likewise.
  926. * include/cln/rational.h (cl_RA_debug_dummy): Likewise.
  927. * include/cln/real.h (cl_R_debug_dummy): Likewise.
  928. * include/cln/ring.h (cl_ring_debug_dummy): Likewise.
  929. * include/cln/sfloat.h (cl_SF_classes_dummy, cl_SF_classes_dummy):
  930. Likewise.
  931. * include/cln/string.h (cl_string_debug_dummy): Likewise.
  932. * include/cln/univpoly.h (cl_UP_debug_dummy): Likewise.
  933. * src/float/base/cl_ieee.h (cl_ieee_dummy_NNN): Likewise.
  934. Avoid g++ 3.1 warnings.
  935. * src/base/cl_offsetof.h (offsetof): Redefine each time.
  936. * src/base/digitseq/cl_DS.h: Include "cl_offsetof.h" after <gmp.h>.
  937. Avoid g++ 3.1 warnings.
  938. * src/base/hash/cl_hash.h (struct cl_heap_hashtable): Use typename
  939. where needed.
  940. * src/base/hash/cl_hash1.h (struct cl_heap_hashtable_1): typedef
  941. htxentry as a shortcut.
  942. * src/base/hash/cl_hash2.h (struct cl_heap_hashtable_2): Likewise.
  943. * src/base/hash/cl_hashset.h (struct cl_heap_hashtable_set): Likewise.
  944. * src/base/hash/cl_hashuniq.h (struct cl_heap_hashtable_uniq):
  945. Likewise.
  946. 2002-03-15 Bruno Haible <bruno@clisp.org>
  947. * cln.tex: Document problem with GNU make 3.77.
  948. Reported by Michael Somos <somos@grail.cba.csuohio.edu>.
  949. 2002-02-16 Richard Kreckel <kreckel@ginac.de>
  950. * cln.m4: quote macro name.
  951. Pointed out by Roberto Bagnara.
  952. 2002-01-20 Richard Kreckel <kreckel@ginac.de>
  953. * autoconf/config.{guess,sub}: Update to GNU version 2002-01-02.
  954. (the old one was broken on Linux/Mips.)
  955. 2002-01-04 Richard Kreckel <kreckel@ginac.de>
  956. * autoconf/autoconf.m4f: get brutal in order to adhere to FHS.
  957. * Version 1.1.4 released.
  958. 2002-01-03 Richard Kreckel <kreckel@ginac.de>
  959. * autoconf/acinclude.m4: revamp MPN-matcher.
  960. * autoconf/aclocal.m4: upgrade to autoconf-2.52 infrastructure,
  961. sync with CLisp from CVS.
  962. * autoconf/autoconf: Likewise.
  963. * autoconf/autoconf.m4f: Likewise (new file).
  964. * configure.ac: Likewise (new file, replaces configure.in).
  965. * configure.in: Likewise (deleted, replaced by configure.ac).
  966. * autoconf/config.{guess,sub}: Update to GNU version 2001-12-13.
  967. * src/Makefile.in: made VPATH safe for autoconf-2.52.
  968. * include/cln/config.h.in: Add __s390__.
  969. 2001-12-31 Richard Kreckel <kreckel@ginac.de>
  970. * src/base/digitseq/cl_DS.h: <gmp.h> is not included extern "C"
  971. any more since GMP4 has some C++ support in it.
  972. 2001-12-14 Richard Kreckel <kreckel@ginac.de>
  973. * include/cln/modules.h, include/cln/object.h: add support for
  974. s390.
  975. * src/numtheory/cl_nt_sqrtmodp.cc: workaround for GCC2.x compiler-bug
  976. on s390, provided by Gerhard Tonn.
  977. 2001-11-05 Richard Kreckel <kreckel@ginac.de>
  978. * autoconf/ltmain.sh: Upgrade to libtool-1.4.2.
  979. * autoconf/config.{guess,sub}: Update to GNU version 2001-09-07.
  980. * Version 1.1.3 released.
  981. 2001-11-04 Bruno Haible <haible@clisp.cons.org>
  982. Interoperability with gcc-3.0 -fuse-cxa-atexit.
  983. * autoconf/aclocal.m4 (CL_GLOBAL_CONSTRUCTORS): Add test whether
  984. global destructors actually exist.
  985. * include/cln/modules.h (CL_PROVIDE, CL_PROVIDE_END, CL_PROVIDE_END):
  986. Don't hack the global destructors if there is no global destructors
  987. function.
  988. 2001-11-03 Richard Kreckel <kreckel@ginac.de>
  989. * src/float/transcendental/cl_F_sinx.cc (sinx_naive): For small
  990. values of x, return square(x) instead of x.
  991. * src/float/transcendental/cl_F_sinhx.cc (sinhx_naive): Likewise.
  992. 2001-07-25 Richard Kreckel <kreckel@ginac.de>
  993. * Version 1.1.2 released.
  994. 2001-07-24 Richard Kreckel <kreckel@ginac.de>
  995. * src/base/hash/cl_hash.h: declare _cl_hashtable_iterator<htentry> a
  996. friend of cl_heap_hashtable<htentry>.
  997. 2001-07-22 Richard Kreckel <kreckel@ginac.de>
  998. * src/float/base/cl_ieee.cc: try to do magic to the FPU only if
  999. _FPU_IEEE is really defined.
  1000. * include/cln/modules.h: change assembler labels from `label' to
  1001. `label:' on hppa, needed by Linux (see comment).
  1002. * autoconf/acinclude.m4: new file (for storing CLN-specific macros).
  1003. * Makefile.devel: adjusted.
  1004. * autoconf/aclocal.m4: regenerate.
  1005. * src/base/low/cl_low_mul.cc: moved POD variables that are declared
  1006. extern "C" elsewhere out of the namespace.
  1007. * src/base/low/cl_low_div.cc: Likewise.
  1008. 2001-06-08 Bruno Haible <haible@clisp.cons.org>
  1009. * autoconf/config.{guess,sub}: Update to GNU version 2001-05-11.
  1010. * autoconf/aclocal.m4: Upgrade to libtool-1.4.
  1011. * autoconf/ltmain.sh: Likewise.
  1012. * autoconf/ltconfig: Remove file.
  1013. * autoconf/install-sh: New file.
  1014. * configure.in: Add AC_CONFIG_AUX_DIR call.
  1015. 2001-06-05 Richard Kreckel <kreckel@ginac.de>
  1016. * tests/tests.cc: resolve namespace ambiguity about strcmp().
  1017. 2001-05-31 Richard Kreckel <kreckel@ginac.de>
  1018. * Version 1.1.1 released.
  1019. 2001-05-28 Richard Kreckel <kreckel@ginac.de>
  1020. * cln/cln.tex: documented problems with shared library on Sparc
  1021. using gcc older than 2.95.3.
  1022. * configure.in: Fixed typos in versioning docu.
  1023. 2001-05-25 Bruno Haible <haible@clisp.cons.org>
  1024. * src/base/digitseq/cl_asm_arm_.cc: Use #0x instead of #& to designate
  1025. hexadecimal constants.
  1026. 2001-05-25 Richard Kreckel <kreckel@ginac.de>
  1027. * autoconf/floatparam.c (double_wordorder_bigendian_p): new symbol.
  1028. * src/float/dfloat/cl_DF.h: Check for double_wordorder_bigendian_p.
  1029. * Removed LiDIA interface since that is now outdated (namespace cln)
  1030. and maintained elsewhere.
  1031. * Adjusted dates and final touches for 1.1.1.
  1032. 2001-05-19 Richard Kreckel <kreckel@ginac.de>
  1033. * INSTALL: Update toolchain info: no egcs, some more platforms.
  1034. * doc/cln.tex: Likewise.
  1035. 2001-05-18 Richard Kreckel <kreckel@ginac.de>
  1036. * src/base/cl_low.h: prepended variables declared inside macros
  1037. with underscore. Fixes equal_hashcode() on various platforms.
  1038. 2001-04-25 Richard Kreckel <kreckel@ginac.de>
  1039. * src/base/cl_low.h: Added several checks if NO_ASM is defined, so
  1040. this definition becomes actually useful. This is needed for
  1041. compilation on Arm until somebody fixes the assembler files for Arm.
  1042. * src/base/digitseq/cl_asm.h: Likewise.
  1043. * src/base/digitseq/cl_asm_.cc: Likewise.
  1044. * */Makefile.in: Added `override' in front of `CPPFLAGS +=' so
  1045. one can say `make CPPFLAGS=-DFOOBAR'.
  1046. 2001-03-26 Arvid Norberg <c99ang@cs.umu.se>
  1047. * src/base/random/cl_random_from.cc: ported to beos.
  1048. 2001-03-05 Richard Kreckel <kreckel@ginac.de>
  1049. * include/cln/modules.h (CL_JUMP_TO): Fix IA64 brokenness.
  1050. 2001-01-28 Richard Kreckel <kreckel@ginac.de>
  1051. * include/cln/number.h (cl_as_N): Remove bogus comment.
  1052. 2001-01-22 Richard Kreckel <kreckel@ginac.de>
  1053. * configure.in: Make build in separate builddir possible (again).
  1054. 2001-01-22 Richard Kreckel <kreckel@ginac.de>
  1055. * include/cln/*.h: Change signatures of all classes' methods
  1056. cln::cl_foo::operator new(size_t, cl_foo*) to
  1057. cln::cl_foo::operator new(size_t, void*) so one can declare
  1058. std::vector<cln::cl_foo>, std::list<cln::cl_foo> etc. for
  1059. certain STL implementations (like libstdc++-v3).
  1060. 2000-12-14 Richard Kreckel <kreckel@ginac.de>
  1061. * Version 1.1 released.
  1062. 2000-12-13 Richard Kreckel <kreckel@ginac.de>
  1063. * */*: cl_istream -> std::istream, cl_ostream -> std::ostream.
  1064. 2000-12-05 Richard Kreckel <kreckel@ginac.de>
  1065. * Makefile.in, src/Makefile.in, doc/Makefile.in: Use mkdir -p.
  1066. * include/cln/version.h.in, src/base/verion.cc: New files.
  1067. * configure.in: Generate include/cln/version.h.
  1068. * cln.m4: Rewrote it. Check result of cln-config without compiling.
  1069. Do cross-check library version and header version information.
  1070. 2000-12-02 Christian Bauer <cbauer@ginac.de>
  1071. * Makefile.in, src/Makefile.in, doc/Makefile.in: Added $DESTDIR.
  1072. * cln.m4, cln.spec.in: some minor fixes with respect to RPM package
  1073. building.
  1074. 2000-11-24 Richard Kreckel <kreckel@ginac.de>
  1075. * */*: Removed problematic stdin, stdout and stderr definitions.
  1076. Use std::cin, std::cout, std::cerr instead (obsoletes 2000-10-29).
  1077. 2000-11-20 Bruno Haible
  1078. * cln-config.1: change title.
  1079. 2000-11-18 Richard Kreckel <kreckel@ginac.de>
  1080. * cln.m4: New file.
  1081. * doc/cln.tex: Document package tools cln-config and cln.m4.
  1082. * Makefile.in: Care about cln.m4.
  1083. 2000-11-17 Richard Kreckel <kreckel@ginac.de>
  1084. * cln-config.1: added manpage, as required by a couple of distros.
  1085. * Makefile.in, doc/Makefile.in: target install depends on installdirs.
  1086. 2000-11-16 Richard Kreckel <kreckel@ginac.de>
  1087. * autoconf/aclocal.m4 (CL_GMP_SET_UINTD): New macro...
  1088. * configure.in: ...used here.
  1089. * include/cln/config.h.in: Put in macros defined by CL_GMP_SET_UINTD...
  1090. * include/cln/types.h: ...used here.
  1091. * autoconf/acgeneral.m4, autoconf/aclocal.m4: Adhere to FHS.
  1092. 2000-11-13 Richard Kreckel <kreckel@ginac.de>
  1093. * src/base/digitseq/cl_asm.h: Test if (intDsize==32) for MIPS and HPPA,
  1094. in order to guard against an accidented configuration.
  1095. * src/integer/conv/cl_I_to_digits.cc (table): member b_hoch_k of
  1096. struct power_table_entry initialized as ULL instead of as UL, if
  1097. intDsize==64 (caused misprinting on MIPS w/ GMP).
  1098. * src/base/cl_macros.h (minus_bitm, bitc): implemented ULL, if
  1099. HAVE_FAST_LONGLONG.
  1100. * src/integer/bitwise/cl_I_mkfx.cc (mkf_extract): Likewise.
  1101. * src/integer/conv/cl_I_from_L.cc (cl_I_from_L): Added trival
  1102. generation of Bignum for intDsize==64 and a notreached-check at end.
  1103. * autoconf/config.guess, autoconf/config.sub: updated from FSF.
  1104. * include/cln/config.h.in: Prepared support for IA64.
  1105. * include/cln/types.h: Likewise.
  1106. * include/cln/object.h: Likewise.
  1107. * include/cln/modules.h: Likewise.
  1108. * src/base/cl_macros.h (nonreturning_function): Likewise (NUE's
  1109. compiler claims __GNUC_MINOR__==9).
  1110. 2000-11-03 Richard Kreckel <kreckel@ginac.de>
  1111. * src/base/cl_macros.h (bit, minus_bit): changed criterion for ULL from
  1112. HAVE_DD to HAVE_FAST_LONGLONG.
  1113. * src/base/cl_macros.h (bitm): implemented ULL, if HAVE_FAST_LONGLONG.
  1114. * src/base/cl_low.h: actually no need to include "cln/types.h" here.
  1115. * src/base/cl_low.h (logcount_64): always ULL, independent of HAVE_DD.
  1116. * src/base/random/cl_UL_random.cc (random32): a is always ULL.
  1117. 2000-11-01 Richard Kreckel <kreckel@ginac.de>
  1118. * include/cln/object.h (cl_combine): define additional signatures, if
  1119. HAVE_LONGLONG is defined, in order to keep the compiler happy.
  1120. * src/base/cl_macros.h: include "cln/types.h", since we need HAVE_DD...
  1121. * src/base/cl_macros.h (bit): ...for this macro...
  1122. * src/base/cl_macros.h (minus_bit): ...and this one.
  1123. * src/base/cl_low.h: include "cln/types.h", since we need HAVE_DD...
  1124. * src/base/cl_low.h (logcount_64): ...for this macro.
  1125. * src/base/random/cl_UL_random.cc (random32): if HAVE_DD a is an ULL.
  1126. * src/integer/gcd/cl_I_gcd_aux2.cc (floorDD): fixed algorithmic bug.
  1127. that turned up when intDsize==32 and cl_word_size==64.
  1128. * src/float/dfloat/elem/cl_DF_div.cc (operator/): fixed a missing cast
  1129. to uint64 that turned up when intDsize==32 and cl_word_size==64.
  1130. 2000-10-29 Richard Kreckel <kreckel@ginac.de>
  1131. * src/real/input/cl_R_read.cc, src/complex/input/cl_N_read.cc:
  1132. #undef stderr, if it's defined so cln::stderr isn't confused.
  1133. * src/base/input/cl_read_globals.cc: stdin should not be extern.
  1134. 2000-09-05 Richard Kreckel <kreckel@ginac.de>
  1135. * include/cln/number.h (As): Fix it in namespace by suffixing `_As'
  1136. to the appropiate method instead of prefixing `as_'.
  1137. * src/complex/misc/cl_N_as.cc (cl_N_As): Likewise.
  1138. * src/real/misc/cl_R_as.cc (cl_R_As): Likewise.
  1139. * src/rational/misc/cl_RA_as.cc (cl_RA_As): Likewise.
  1140. * src/integer/misc/cl_I_as.cc (cl_I_As): Likewise.
  1141. * src/float/misc/cl_F_as.cc (cl_F_As): Likewise.
  1142. * src/float/sfloat/misc/cl_SF_as.cc (cl_SF_As): Likewise.
  1143. * src/float/lfloat/misc/cl_LF_as.cc (cl_LF_As): Likewise.
  1144. * src/float/ffloat/misc/cl_FF_as.cc (cl_FF_As): Likewise.
  1145. * src/float/dfloat/misc/cl_DF_as.cc (cl_DF_As): Likewise.
  1146. 2000-09-05 Richard Kreckel <kreckel@ginac.de>
  1147. * src/complex/transcendental/cl_C_expt_C.cc (expt): fix logic for
  1148. the 0^y cases.
  1149. 2000-08-30 Richard Kreckel <kreckel@ginac.de>
  1150. * include/cln/number.h, cl_number::_as_cl_private_thing(): removed.
  1151. Rearranged for a clearer distinction between macros and remaining
  1152. identifiers, so Cint can parse it smoothly.
  1153. 2000-08-29 Richard Kreckel <kreckel@ginac.de>
  1154. * include/cln/number.h, the(const cl_number& x): New template
  1155. function.
  1156. 2000-08-29 Richard Kreckel <kreckel@ginac.de>
  1157. * */*: Pushed CLN into a namespace `cln'. While doing so, the
  1158. following identifiers got their poor-man's namespace (i.e. the
  1159. prefix `cl_') stripped off:
  1160. cl_catalanconst() -> catalanconst()
  1161. cl_compare() -> compare()
  1162. cl_cos_sin() -> cos_sin()
  1163. cl_cos_sin_t -> cos_sin_t
  1164. cl_cosh_sinh() -> cosh_sinh()
  1165. cl_cosh_sinh_t -> cosh_sinh_t
  1166. cl_decoded_dfloat -> decoded_dfloat
  1167. cl_decoded_ffloat -> decoded_ffloat
  1168. cl_decoded_float -> decoded_float
  1169. cl_decoded_lfloat -> decoded_lfloat
  1170. cl_decoded_sfloat -> decoded_sfloat
  1171. cl_default_float_format -> default_float_format
  1172. cl_default_print_flags -> default_print_flags
  1173. cl_default_random_state -> default_random_state
  1174. cl_double_approx() -> double_approx()
  1175. cl_equal() -> equal()
  1176. cl_equal_hashcode() -> equal_hashcode()
  1177. cl_eulerconst() -> eulerconst()
  1178. cl_find_modint_ring() -> find_modint_ring()
  1179. cl_find_univpoly_ring() -> find_univ_poly_ring()
  1180. cl_float_approx() -> float_approx
  1181. cl_float_format() -> float_format()
  1182. cl_float_format_t -> float_format_t
  1183. cl_free_hook() -> free_hook()
  1184. cl_hermite() -> hermite()
  1185. cl_laguerre() -> laguerre()
  1186. cl_legendre() -> legandre()
  1187. cl_malloc_hook() -> malloc_hook()
  1188. cl_pi() -> pi()
  1189. cl_tschebychev() -> tschebychev()
  1190. cl_zeta() -> zeta()
  1191. NB: For functions these changes includes all signatures.
  1192. * include/*: moved to include/cln/*, stripped `cl_' off filenames.
  1193. * cln-config.in: new file.
  1194. 2000-08-26 Bruno Haible <haible@clisp.cons.org>
  1195. * autoconf/acgeneral.m4 (AC_OUTPUT): Use braces in exec_prefix default
  1196. value, not parens.
  1197. 2000-08-18 Bruno Haible <haible@clisp.cons.org>
  1198. * include/cl_univpoly_modint.h: Fix typo.
  1199. 2000-07-13 Bruno Haible <haible@clisp.cons.org>
  1200. * src/float/input/cl_F_read_stream.cc (number_char_p): Accept '_',
  1201. used as precision marker for floats.
  1202. Reported by Keith Briggs (in 1998) and Thomas Roessler.
  1203. * src/integer/input/cl_I_read_stream.cc (number_char_p): Likewise.
  1204. * src/rational/input/cl_RA_read_stream.cc (number_char_p): Likewise.
  1205. * src/real/input/cl_R_read_stream.cc (number_char_p): Likewise.
  1206. * src/complex/input/cl_N_read_stream.cc (number_char_p): Likewise.
  1207. 2000-06-22 Bruno Haible <haible@clisp.cons.org>
  1208. * include/cl_object.h: Rename cl_word_size to cl_pointer_size.
  1209. * include/cl_types.h (HAVE_FAST_LONGLONG): Also define on Irix6
  1210. with N32 ABI.
  1211. (cl_word_size): New macro.
  1212. * src/float/sfloat/cl_SF.h: Use cl_pointer_size instead of
  1213. cl_word_size.
  1214. 2000-05-31 Bruno Haible <haible@clisp.cons.org>
  1215. * tests/exam_I_floor.cc (integer_floor_tests): Add one more entry.
  1216. From a sample that fails with gcc-2.95.2 on Sparc.
  1217. * tests/exam_I_gcd.cc (integer_gcd_tests): Likewise.
  1218. 2000-05-30 Richard Kreckel <kreckel@ginac.de>
  1219. * configure.in, autoconf/aclocal.m4 (CL_GMP_H_VERSION, CL_GMP_CHECK):
  1220. New macros.
  1221. * configure.in, include/cl_config.h.in (CL_VERSION, CL_VERSION_MINOR,
  1222. CL_VERSION_PATCHLEVEL): New definitions.
  1223. * autoconf/config.guess, autoconf/config.sub, autoconf/ltconfig,
  1224. autoconf/ltmain.sh: updated from FSF (libtool 1.3.5, etc).
  1225. * src/Makefile.in, configure.in: release-variables renamed from
  1226. CLN_* to CL_*.
  1227. * configure.in: default to build both shared and static library
  1228. (i.e. default to the most common behaviour).
  1229. 2000-05-29 Richard Kreckel <kreckel@ginac.de>
  1230. * autoconf/aclocal.m4 (CL_CANONICAL_HOST): Added missing changequote
  1231. environment around the patch of 2000-05-23.
  1232. 2000-05-29 Bruno Haible <haible@clisp.cons.org>
  1233. * autoconf/aclocal.m4 (CL_PROG_INSTALL): Fix typo.
  1234. Reported by Thomas Klausner <wiz@danbala.ifoer.tuwien.ac.at>.
  1235. 2000-05-27 Richard Kreckel <kreckel@ginac.de>
  1236. * src/float/lfloat/algebraic/cl_LF_sqrt.cc,
  1237. src/base/digitseq/cl_DS_sqrt.cc: Readjusted break-even points.
  1238. 2000-05-24 Richard Kreckel <kreckel@ginac.de>
  1239. * autoconf/config.*: Updated to new version from FSF
  1240. (the new libtool wants this).
  1241. * src/Makefile.in: added $(LDFLAGS) to link step.
  1242. * src/base/digitseq/cl_2DS_div.cc, cl_2DS_recip.cc: Readjusted
  1243. break-even points.
  1244. 2000-05-23 Bruno Haible <haible@clisp.cons.org>
  1245. * autoconf/aclocal.m4 (CL_CANONICAL_HOST): Determine host_cpu,
  1246. host_vendor, host_os correctly if $host has more than two hyphens.
  1247. 2000-05-19 Richard Kreckel <kreckel@ginac.de>
  1248. * src/base/digitseq/cl_DS_mul.cc: Rearranged break-even points to
  1249. better match present-day CPUs whenever GMP3 is used.
  1250. * src/base/digitseq/cl_DS_div.cc: dto.
  1251. * src/TUNING: Added comment about order of tuning.
  1252. * configure, configure.in: Safer GMP3-detection.
  1253. * INSTALL.generic: Clarified behaviour of --with-gmp.
  1254. * autoconf/config.guess: updated from Clisp-2000-03-06 sources.
  1255. 2000-05-04 Richard Kreckel <kreckel@ginac.de>
  1256. * gmp/: removed completely. From now on we are going to link
  1257. externally against libgmp3.0 or above!
  1258. * configure, configure.in, Makefile.in, */Makeflags: removed support
  1259. of internal gmp 2.0.2, like $GMP_INCLUDES, which should be done by
  1260. setting $CPPFLAGS instead.
  1261. * Makefile.in: Added libtool inter-library dependency for -lgmp and
  1262. conforming interface versioning (-version-info).
  1263. * autoconf/ltconfig, autoconf/ltmain.sh: Updated to newer versions
  1264. from libtool 1.3.4.
  1265. 2000-02-22 Bruno Haible <haible@clisp.cons.org>
  1266. * src/base/digitseq/cl_asm_mips_.cc: Starting at argument 5 the
  1267. parameter passing was changed for the MIPS n32 ABI.
  1268. 2000-01-24 Richard Kreckel <kreckel@ginac.de>
  1269. * gmp/*: Replaced the complete mpn sources with the ones from
  1270. Debian since they are maintained while the ones from FSF
  1271. aren't and there were problems on some architectures, PowerPC
  1272. in particular. See the file gmp/README.CLN. This way the
  1273. hard links in this directory have vanished, they were causing
  1274. trouble for people working in AFS. This became necessary for
  1275. Debian, because there it woudn't compile on PPC.
  1276. 2000-01-13 Richard Kreckel <kreckel@ginac.de>
  1277. * Version 1.0.3 released.
  1278. 2000-01-13 Richard Kreckel <kreckel@ginac.de>
  1279. * src/base/cl_macros.h (nonreturning_function): For egcs and newer
  1280. use __attribute__ ((__noreturn__)) instead of the __volatile__
  1281. storage class.
  1282. (nonreturning): Remove macro.
  1283. * include/*: Minor fixes to stop -ansi -pedantic from complaining.
  1284. * include/cl_integer.h: (doublefactorial): New declaration.
  1285. * src/integer/misc/combin/cl_I_doublefactorial.cc: New file.
  1286. 1999-12-18 Bruno Haible <haible@clisp.cons.org>
  1287. * autoconf/acgeneral.m4 (AC_ARG_PROGRAM): Create conftestsed using
  1288. "cat", not "echo".
  1289. * autoconf/ltconfig: Improve support for recent FreeBSD 3.
  1290. * include/cl_GV.h (cl_GV_vectorops): Change return type from 'T' to
  1291. 'const T', to match definition in src/vector/cl_GV_number.cc.
  1292. Reported by Duncan Simpson <dps@io.stargate.co.uk>.
  1293. * gmp/mpn/Makefile.in (.S.lo): Use 'if', not '&&', because '&&' may
  1294. yield return code 1.
  1295. 1999-09-07 Bruno Haible <haible@clisp.cons.org>
  1296. * Version 1.0.2 released.
  1297. 1999-09-06 Bruno Haible <haible@clisp.cons.org>
  1298. * src/rational/cl_RA.h (integerp, ratiop): Instead of returning a
  1299. boolean expression, write alternatives ending with either
  1300. "return cl_true;" or "return cl_false;". This way, g++ does a
  1301. better job inlining it.
  1302. * src/float/cl_F.h (longfloatp): Likewise.
  1303. * src/real/cl_R.h (rationalp, integerp, floatp): Likewise.
  1304. * src/complex/cl_C.h (realp, complexp): Likewise.
  1305. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  1306. * include/cl_integer.h (cl_equal_hashcode): New declaration.
  1307. * include/cl_rational.h (cl_equal_hashcode): New declaration.
  1308. * include/cl_sfloat.h (cl_equal_hashcode): New declaration.
  1309. * include/cl_ffloat.h (cl_equal_hashcode): New declaration.
  1310. * include/cl_dfloat.h (cl_equal_hashcode): New declaration.
  1311. * include/cl_lfloat.h (cl_equal_hashcode): New declaration.
  1312. * include/cl_float.h (cl_equal_hashcode): New declaration.
  1313. * include/cl_real.h (cl_equal_hashcode): New declaration.
  1314. * include/cl_complex.h (cl_equal_hashcode): New declaration.
  1315. * src/base/cl_N.h (equal_hashcode_low, equal_hashcode_one): New macros.
  1316. * src/integer/misc/cl_I_eqhashcode.cc: New file.
  1317. * src/rational/misc/cl_RA_eqhashcode.cc: New file.
  1318. * src/float/sfloat/misc/cl_SF_eqhashcode.cc: New file.
  1319. * src/float/ffloat/misc/cl_FF_eqhashcode.cc: New file.
  1320. * src/float/dfloat/misc/cl_DF_eqhashcode.cc: New file.
  1321. * src/float/lfloat/misc/cl_LF_eqhashcode.cc: New file.
  1322. * src/float/misc/cl_F_eqhashcode.cc: New file.
  1323. * src/real/misc/cl_R_eqhashcode.cc: New file.
  1324. * src/complex/misc/cl_C_eqhashcode.cc: New file.
  1325. * doc/cln.tex: Document `cl_equal_hashcode'.
  1326. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  1327. * include/cl_ring.h (cl_number_ring_ops): Add `contains' member.
  1328. (cl_number_ring): New class.
  1329. (cl_specialized_number_ring<T>): Inherit from cl_number_ring.
  1330. (instanceof): New function.
  1331. * src/integer/ring/cl_I_ring.cc (cl_I_p): New function.
  1332. * src/integer/misc/cl_I_as.cc (cl_I_p): Add comment.
  1333. * src/rational/ring/cl_RA_ring.cc (cl_RA_p): New function.
  1334. * src/rational/misc/cl_RA_as.cc (cl_RA_p): Add comment.
  1335. * src/real/ring/cl_R_ring.cc (cl_R_p): New function.
  1336. * src/real/misc/cl_R_as.cc (cl_R_p): Add comment.
  1337. * src/complex/ring/cl_C_ring.cc (cl_N_p): New function.
  1338. * src/complex/misc/cl_N_as.cc (cl_N_p): Add comment.
  1339. * doc/cln.tex: Document `instanceof'.
  1340. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  1341. * include/cl_rational.h (numerator, denominator): New declarations.
  1342. * src/rational/elem/cl_RA_numerator.cc: New file.
  1343. * src/rational/elem/cl_RA_denominator.cc: New file.
  1344. * include/cl_integer.h (numerator, denominator): New inline functions.
  1345. * doc/cln.tex: Document `numerator' and `denominator'.
  1346. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  1347. * src/rational/algebraic/cl_RA_rootp.cc (rootp): Fix endless loop
  1348. in the integer case.
  1349. * src/rational/algebraic/cl_RA_rootp_I.cc (rootp): Likewise.
  1350. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  1351. * include/cl_config.h.in: Support for sparc64 CPU.
  1352. * include/cl_modules.h: Likewise.
  1353. * include/cl_types.h: Likewise.
  1354. * include/cl_object.h: Likewise.
  1355. * include/cl_GV.h: Likewise.
  1356. * src/Makefile.in: Likewise.
  1357. * src/base/cl_alloca.h: Likewise.
  1358. * src/base/cl_macros.h: Likewise.
  1359. * src/base/cl_sysdep.h: Likewise.
  1360. * src/base/cl_low.h: Likewise.
  1361. * src/base/digitseq/cl_asm.h: Likewise.
  1362. * src/base/digitseq/cl_asm_.cc: Likewise.
  1363. * src/base/digitseq/cl_asm_sparc64.h: New file.
  1364. * src/base/digitseq/cl_asm_sparc64_.cc: New file.
  1365. * src/modinteger/cl_MI_int.h: Support for sparc64 CPU.
  1366. * src/polynomial/elem/cl_UP_no_ring.cc: Likewise.
  1367. * src/polynomial/elem/cl_UP_GF2.h: Likewise.
  1368. * src/polynomial/elem/cl_asm_GF2.cc: Likewise.
  1369. 1999-09-04 Bruno Haible <haible@clisp.cons.org>
  1370. * src/base/digitseq/cl_asm_sparc_.cc (orc2_loop_up, orc2_loop_down):
  1371. Use the `orn' instruction.
  1372. 1999-08-14 Bruno Haible <haible@clisp.cons.org>
  1373. Assume all platforms have <stdlib.h> and clock_t.
  1374. * configure.in: Don't call CL_STDLIB_H and CL_CLOCK_T.
  1375. * src/base/cl_base_config.h.in (CLOCK_T): Remove definition.
  1376. * src/base/random/cl_random_from.cc: Use clock_t instead of CLOCK_T.
  1377. * src/timing/cl_t_config.h.in (CLOCK_T): Remove definition.
  1378. * src/timing/cl_t_current2.cc: Use clock_t instead of CLOCK_T.
  1379. 1999-07-18 Bruno Haible <haible@clisp.cons.org>
  1380. * gmp/config.guess: Link to autoconf/config.guess.
  1381. gmp/config.sub: Link to autoconf/config.sub.
  1382. Needed for Win32 platforms.
  1383. 1999-07-17 Bruno Haible <haible@clisp.cons.org>
  1384. * autoconf/aclocal.m4 (CL_CANONICAL_HOST_CPU): Distinguish "sparc" and
  1385. "sparc64" according to the C compiler, not the uname result.
  1386. 1999-06-17 Bruno Haible <haible@clisp.cons.org>
  1387. * src/base/digitseq/cl_asm_sparc_.cc (compare_loop_up): Fix
  1388. COUNTER_LOOPS version, fortunately not used yet.
  1389. * include/cl_modules.h: Prepare for gcc version 3.
  1390. 1999-06-12 Bruno Haible <haible@clisp.cons.org>
  1391. * src/rational/elem/cl_RA_plus.cc, src/rational/elem/cl_RA_minus.cc:
  1392. Change the last call from I_I_to_RT to I_I_to_RA.
  1393. 1999-06-09 Bruno Haible <haible@clisp.cons.org>
  1394. * Version 1.0.1 released.
  1395. 1999-06-09 Bruno Haible <haible@clisp.cons.org>
  1396. * src/integer/cl_I.h (pFN_maxlength_digits_at): Define also when
  1397. intDsize==64.
  1398. 1999-06-08 Bruno Haible <haible@clisp.cons.org>
  1399. * autoconf/intparam.c (printf_underscored): Change argument type to
  1400. `const char*'.
  1401. * include/cl_modules.h (CL_OUTPUT_LABEL, CL_JUMP_TO): New macros.
  1402. (CL_PROVIDE, CL_PROVIDE_END): Use them.
  1403. * include/cl_string.h (cl_heap_string::operator new): Return 1, not 0.
  1404. * include/cl_GV.h (cl_GV_inner<T>::operator new): Likewise.
  1405. * src/base/ring/cl_no_ring.cc (dummy_canonhom, dummy_expt_pos): Don't
  1406. cast a cl_I to void here. Works around a bug in g++-2.95.
  1407. * src/complex/misc/cl_C_class.cc: Include "cl_C.h".
  1408. * src/polynomial/elem/cl_UP_no_ring.cc (dummy_canonhom,
  1409. dummy_expt_pos): Don't cast a cl_I to void here. Works around a bug
  1410. in g++-2.95.
  1411. * src/polynomial/elem/cl_asm_sparc_GF2.cc (DECLARE_FUNCTION): New
  1412. macro.
  1413. * src/rational/misc/cl_RA_class.cc: Include "cl_RA.h".
  1414. * src/vector/cl_GV_I.cc (cl_heap_GV_I_general::operator new,
  1415. DEFINE_cl_heap_GV_I_bits): Return 1, not 0.
  1416. * src/vector/cl_GV_number.cc (cl_heap_GV_number_general::operator new):
  1417. Likewise.
  1418. 1999-06-01 Bruno Haible <haible@clisp.cons.org>
  1419. * autoconf/aclocal.m4 (CL_CANONICAL_HOST_CPU): Canonicalize alpha
  1420. variants to alpha.
  1421. 1999-05-29 Bruno Haible <haible@clisp.cons.org>
  1422. * src/base/digitseq/cl_asm_i386_.cc (DECLARE_FUNCTION): Treat
  1423. OpenBSD like NetBSD.
  1424. * src/base/digitseq/cl_asm_sparc_.cc (DECLARE_FUNCTION): Likewise.
  1425. * src/base/digitseq/cl_asm_m68k_.cc (DECLARE_FUNCTION): Treat
  1426. OpenBSD like NetBSD, and Linux/ELF like SVR4.
  1427. 1999-05-16 Bruno Haible <haible@clisp.cons.org>
  1428. * src/base/cl_low.h (integerlength32) [__rs6000__]: Use old assembler
  1429. syntax on AIX systems and new assembler syntax on non-AIX systems.
  1430. 1999-05-01 Bruno Haible <haible@clisp.cons.org>
  1431. * autoconf/config.guess, autoconf/config.sub: Upgrade to newest
  1432. version from GNU CVS.
  1433. 1999-04-24 Bruno Haible <haible@clisp.cons.org>
  1434. * src/integer/bitwise/cl_I_logand.cc (logand): Optimize the case when
  1435. either operand is a positive fixnum, O(1) instead of O(N).
  1436. * src/integer/bitwise/cl_I_lognand.cc (lognand): Likewise.
  1437. * src/integer/bitwise/cl_I_logandc2.cc (logandc2): Likewise for the
  1438. first operand.
  1439. 1999-04-14 Bruno Haible <haible@clisp.cons.org>
  1440. * autoconf/aclocal.m4 (CL_GLOBAL_CONSTRUCTORS): Add check whether
  1441. ctor/dtor needs to be exported.
  1442. * include/cl_config.h.in (CL_NEED_GLOBALIZE_CTORDTOR): New macro.
  1443. * include/cl_modules.h (CL_GLOBALIZE_JUMP_LABEL): Renamed from
  1444. CL_GLOBALIZE_LABEL.
  1445. (CL_GLOBALIZE_LABEL): New macro.
  1446. (CL_GLOBALIZE_CTORDTOR_LABEL): Renamed from CL_GLOBALIZE_ASM_LABEL.
  1447. (CL_PROVIDE): Update.
  1448. 1999-04-12 Bruno Haible <haible@clisp.cons.org>
  1449. * src/Makefile.in ($(ASMFILES_S)): On HPPA, ignore preprocessing
  1450. errors ("unterminated string or character constant").
  1451. ($(ASMFILES_LO)): On HPPA, try with various settings of
  1452. COMPILER_PATH, in order to try /usr/ccs/bin/as and /bin/as.
  1453. 1999-04-11 Bruno Haible <haible@clisp.cons.org>
  1454. * INSTALL: Mention gmp problems on MIPS.
  1455. * doc/cln.tex: Likewise.
  1456. 1999-03-24 Mumit Khan <khan@xraylith.wisc.edu>
  1457. * src/Makefile.in (SUBDIRS): Filter out CVS and RCS directories from
  1458. the source tree.
  1459. * include/cl_modules.h (CL_GLOBALIZE_LABEL): Define for Win32.
  1460. (CL_GLOBALIZE_ASM_LABEL): New macro.
  1461. (CL_PROVIDE): Use it.
  1462. * src/base/random/cl_random_from.cc: Handle WIN32.
  1463. * src/timing/cl_t_current.cc: Likewise.
  1464. 1999-03-15 Bruno Haible <haible@clisp.cons.org>
  1465. * autoconf/intparam.c (main7): Use %lX instead of %X for a `long'.
  1466. (main8): Adapt for C++.
  1467. 1999-03-09 Bruno Haible <haible@clisp.cons.org>
  1468. * INSTALL: Mention egcs-1.1 problems on Sparc.
  1469. * doc/cln.tex: Likewise.
  1470. 1999-03-08 Bruno Haible <haible@clisp.cons.org>
  1471. * autoconf/aclocal.m4 (CL_FPU_CONTROL): Fix the "checking for"
  1472. messages.
  1473. 1999-02-25 Bruno Haible <haible@clisp.cons.org>
  1474. * autoconf/aclocal.m4: In test programs, declare `int main()', not
  1475. `main()'.
  1476. * lidia-interface/src/interfaces/integers/cln/bigint.c
  1477. (bigint_to_string): Fix for negative arguments.
  1478. * src/base/cl_low.h: Check for `__sparc__', not `SPARC'.
  1479. * src/base/cl_alloca.h: Likewise.
  1480. * src/base/cl_low.h: Eliminate CLISP style "# " comments.
  1481. * src/base/digitseq/cl_asm_arm_.cc,
  1482. src/base/digitseq/cl_asm_mips_.cc,
  1483. src/float/dfloat/elem/cl_DF_mul.cc: Likewise.
  1484. * src/modinteger/cl_MI_pow2.h,
  1485. src/modinteger/cl_MI_pow2m1.h,
  1486. src/modinteger/cl_MI_pow2p1.h: Workaround g++-2.7.2 inlining bug.
  1487. 1999-01-18 Bruno Haible <haible@clisp.cons.org>
  1488. * autoconf/acgeneral.m4,
  1489. autoconf/acspecific.m4: Upgrade to autoconf-2.13.
  1490. * autoconf/config.guess, autoconf/config.sub: Likewise.
  1491. * autoconf/aclocal.m4 (CL_ALLOCA): Test for _MSC_VER and alloca being
  1492. a macro. Use ${ac_objext}.
  1493. * src/base/cl_macros.h (alloca): Put _MSC_VER test before the others,
  1494. conforming with CL_ALLOCA.
  1495. 1999-01-12 Bruno Haible <haible@clisp.cons.org>
  1496. * Version 1.0 released.