]> www.ginac.de Git - ginac.git/blob - NEWS
Added numerical evaluation for the functions tgamma, lgamma and beta.
[ginac.git] / NEWS
1 This file records noteworthy changes.
2
3 1.4.0 (<date>)
4 * Better worst case behavior in heuristic gcd [Alexei Sheplyakov].
5 * ...<please continue here>...
6
7 1.3.5 (17 August 2006)
8 * Re-built bison related files that caused bugs with gcc 4.
9 * Fixed bugs in fderivative::match_same_type(), expairseq::match(),
10   expand_dummy_sum(), and expairseq::map().
11 * Fixed template specialization for class container to be gcc 4.2 compliant.
12 * Output in csrc mode is now -x instead of -1.0*x.
13 * Fixed tutorial and reference generation in html/pdf/ps format.
14 * Modified autotool configuration to allow for compilation on MinGW.
15 * Debian packaging files updated.
16
17 1.3.4 (12 April 2006)
18 * More general index dimensions are now possible.
19 * Improved algebraic substitutions.
20 * Fixed wrong matching in .has(). 
21 * Fixed bug in differentiation of a power.
22 * collect_common_factors also works with negative powers of common factors now.
23 * Code clean-up and preparations for upcoming cln 1.2.
24
25 1.3.3 (24 October 2005)
26 * Fixed bug occuring in algebraic substitutions with expressions involving
27   indices.
28 * Fixed bug that selected the wrong algorithm for determinants of purely
29   numeric matrices with at least one floating point element.
30 * Fixed bug in function H that caused an infinite recursion for arguments
31   around +-I.
32 * Fixed const-correctness in printing handler for GCC 4.0.2.
33 * Made lookup in adaptivesimpson precision-aware.
34 * Added series expansion for functions (classical) Li and S around x==0.
35 * Added fsolve() numerical univariate real-valued function solver.
36 * Added functions sub_matrix() and reduced_matrix().
37 * Small cleanups. Less warnings with latest GCC.
38
39 1.3.2 (10 July 2005)
40 * GCD avoids to produce expanded expressions.
41 * Fixed bug in expanding expressions containing dummy indices.
42 * Fixed static initialization order bug.
43 * collect_common_factors now works with powers.
44 * Modernized configuration scripts.
45
46 1.3.1 (04 May 2005)
47 * integral() and eval_integ() can be used from ginsh.
48 * Integrals can be series-expanded.
49 * Fixed a library initialization problem.
50 * GiNaC compiles from tarball even if lex/flex is missing.
51 * Fixed bugs in canonicalize_clifford(), clifford_prime() and clifford_to_lst().
52 * clifford_moebius_map(), remove_dirac_ONE() and LaTeX output of Clifford
53   objects now care about representation labels.
54 * Fixed bug in gcd.
55 * Better output for slashed expressions
56
57 1.3.0 (19 October 2004)
58 * The Clifford classes have been generalized to allow working with Clifford
59   algebras generated by arbitrary symmetric tensors or matrices. Also, a lot
60   of new functions for Clifford algebras have been added, including
61   automorphisms and Moebius transformations. [V. Kisil]
62 * Added some basic symbolic and numeric integration facilities. [C. Dams]
63 * The multiple polylogarithm Li() now evaluates numerically for arbitrary
64   arguments.
65 * New functions G(a,y) and G(a,s,y) added (another notation for multiple
66   polylogarithms).
67
68 1.2.4 (12 October 2004)
69 * Added ex::unitcontprim() to compute the unit, content, and primitive parts
70   of a polynomial in one go.
71 * binomial(n, k) evaluates for non-integer arguments n.
72 * Li(2,x) now evaluates for +-I.
73 * Optimized Li(2,x).
74 * Fixed bug in Li(n,x) (if Li(2,x) was calculated with high precision the
75   enlargement of the look-up table caused a segmentation fault).
76 * Fixed another bug in the series expansion of powers, and a bug in
77   power::info().
78
79 1.2.3 (13 August 2004)
80 * Added variants of dirac_trace() and color_trace() that take the trace over
81   more than one representation label by specifying a set or list of labels.
82 * diracgamma::contract_with() uses Chisholm identities in 4 dimensions to
83   produce more compact results.
84 * Fixed a bug in the series expansion of powers.
85 * The --enable-html-doc and --enable-ps-doc configure options are gone.
86   Documentation in HTML, DVI, PostScript, and PDF formats is now built with
87   "make html", "make dvi", "make ps", and "make pdf", respectively. The only
88   documentation that gets built by default are the tutorial in .info format
89   and the manpages.
90
91 1.2.2 (3 August 2004)
92 * Added const_preorder_iterator and const_postorder_iterator classes (and
93   associated methods ex::pre/postorder_begin/end()) providing tree traversal
94   with iterators.
95 * Fixed the LaTeX output of the varidx class.
96 * Fixed bugs in series expansion and complex conjugation.
97 * (p.i*p.i).get_free_indices() returns the correct result () instead of (.i).
98 * Symbolic functions without any eval(), evalf() etc. functions now work
99   properly.
100 * integer_content(), content(), and primpart() now also work for polynomials
101   with rational coefficients (calculating the LCM of coefficients'
102   denominators).
103 * Added method matrix::rank().
104 * Added function resultant().
105 * Added integer_content() function to ginsh.
106
107 1.2.1 (23 April 2004)
108 * Fixed infinite recursion in atan2_evalf() and improved atan2_eval().
109 * Added automatic evaluations for trigonometric functions with negative
110   arguments (e.g. sin(-2) -> -sin(2)).
111 * Fixed a static initialization order goof-up.
112 * Fixed various bugs in series expansion.
113
114 1.2.0 (19 March 2004)
115 * Added a structure<T> template class for the easy creation of user-defined
116   algebraic classes.
117 * Added support for (acyclic) visitors, to allow cleaner implementations of
118   algebraic algorithms.
119 * Added a const_iterator class that can be used instead of op()/nops().
120 * Completely revamped the implementation of expression output. It is now
121   possible to add new output formats, to change the behavior of predefined
122   formats at run-time, and to have different output styles for algebraic
123   functions.
124 * Symbols can be made non-commutative.
125 * Added a method ex::conjugate() and a function conjugate() for complex
126   conjugation. Symbols can be declared as real or complex-valued.
127 * Improved the speed of subs(), normal(), to_rational() and to_polynomial()
128   by the use of maps instead of lists. The old forms
129     subs(const lst & ls, const lst & lr, unsigned options)
130     to_rational/to_polynomial(lst & repl)
131   are still available for compatibility, but using the new forms
132     subs(const exmap & m, unsigned options)
133     to_rational/to_polynomial(exmap & repl)
134   is more efficient, especially when the number of replacements is large.
135 * quo(), rem(), prem(), sprem(), decomp_rational(), unit(), content(),
136   primpart() and matrix::charpoly() now take a "const ex &" instead of a
137   "const symbol &".
138 * Redundant expressions (two ex pointing to different objects are found to be
139   equal in compare()) are now actively deleted/fused to conserve memory and
140   speed up subsequent comparisons. This behavior can be suppressed on a
141   per-object level with status_flags::not_shareable. Lists and matrices are
142   not shareable by default.
143 * Lots of internal streamlining and optimizations.
144 * Caveats for class implementors:
145    - basic::copy() and basic::destroy() are gone; classes derived from
146      basic can use the defaults for the assignment operator and copy
147      constructor.
148    - basic::subs(), basic::normal(), basic::to_rational() and
149      basic::to_polynomial() take 'exmap' objects instead of lists.
150    - basic::subs() now descends into subexpressions (if accessible via
151      nops()/op()/let_op()). If you have a custom implementation of subs()
152      that calls basic::subs() after substituting subexpressions, this needs
153      to be changed to a call to subs_one_level().
154    - lst::thislst() and exprseq::thisexprseq() renamed to thiscontainer().
155    - thiscontainer() and associated constructors now take a std::auto_ptr.
156    - Overloading basic::print() is now deprecated. You should use
157      print_func<>() class options instead.
158
159 1.1.7 (11 March 2004)
160 * Fixed a bug in canonicalize_clifford().
161 * Series expansion now works predictably. All terms with the exponent of the
162   expansion variable smaller than the given order are calculated exactly. If
163   the series is not terminating, the Order function is (at least) of the given
164   order.
165
166 1.1.6 (22 January 2004)
167 * Added a function option "dummy()" which means "no options". This simplifies
168   the implementation of symbolic functions which are not to be further
169   evaluated.
170 * Removed a bug in the numerical evaluation of Li() that caused the system
171   to hang for certain parameter combinations.
172 * Fixed a bug in the calculation of hash values for indices that could lead
173   to wrong results or bogus error messages from simplify_indexed().
174 * Fixed a bug in the evaluation of harmonic polylogarithms for complex
175   arguments with positive imaginary part.
176
177 1.1.5 (5 November 2003)
178 * Harmonic polylogarithms now numerically evaluate for arbitrary arguments
179   (parameter must still be positive integers).
180 * The zeta function now can also be given a lst as a parameter in which case
181   it becomes a multiple zeta value. The use of mZeta is deprecated.
182 * The order of parameters for the multiple polylogarithm has been corrected.
183 * Documentation for the nested sums functions zeta, harmonic polylog, multiple
184   polylog, etc. has been added.
185
186 1.1.4 (17 October 2003)
187 * Lists and matrices can now be initialized from comma-separated lists of
188   expressions, like this:
189
190     lst l;
191     l = x, 2, y, x+y;
192
193     matrix M(3, 3);
194     M = x, y, 0,
195        -y, x, 0,
196         0, 0, 1;
197
198   This is both faster and produces much smaller code than the old constructors
199   lst(ex, ex, ...) and matrix(unsigned, unsigned, lst), especially in the case
200   of matrices, and is now the recommended way to create these objects.
201 * The function mZeta now evaluates much faster for arbitrary parameters. The
202   harmonic and multiple polylogarithms evaluate considerably faster and check
203   for convergence. The order of parameters for the harmonic polylogarithm
204   has been corrected.
205
206 1.1.3 (22 August 2003)
207 * Added new symbolic functions for better integration with nestedsums:
208   (multiple) polylogarithm Li(), Nielsen's generalized polylogarithm S(),
209   harmonic polylogarithm H(), and multiple zeta value mZeta().
210 * New exhashmap<T> template intended as a drop-in replacement for
211   std::map<ex, T, ex_is_less> using GiNaC's hashing algorithms.
212
213 1.1.2 (11 August 2003)
214 * Fixed a bug in the unarchiving of sums and products: terms were not
215   reordered in a canonical way.
216 * Fixed a bug in normal()/numer_denom(): denominator was not made unit
217   normal if it was a simple number.
218 * Improved the speed of subs() in some cases.
219
220 1.1.1 (18 June 2003)
221 * lst (and exprseq) provide iterators for read-only element access. For
222   sequential access this is one order faster than using op().
223 * Implemented relational::subs() (this was done in 1.0.9 but inadvertently
224   omitted from the 1.1 branch).
225 * pole_error and do_taylor are available to library users.
226 * Added on-line help and Tab-completion for print(), iprint(), print_latex()
227   and print_csrc() in ginsh.
228
229 1.1.0 (3 April 2003)
230 * Removed deprecated macros is_ex_a, is_ex_exactly_a and friends for good.
231 * The scalar_products mechanism allows the specification of an index dimension.
232 * Removed dirac_gamma6/7().
233 * Added ex::to_polynomial().
234 * subs() accepts an optional "options" argument. The option
235   subs_option::subs_algebraic enables "smart" substitutions in products and
236   powers.
237 * Added stream manipulators "dflt", "latex", "python", "python_repr", "tree",
238   "csrc", "csrc_float", "csrc_double", "csrc_cl_N", "index_dimensions" and
239   "no_index_dimensions" to control the output format. Calling basic::print()
240   directly is now deprecated.
241 * Made the hashing more simple and efficient.
242 * Caveats for class implementors:
243    - basic::subs(): third argument changed from "bool" to "unsigned"
244    - unarchiving constructor and basic::unarchive(): "const" removed from
245      second argument
246    - basic::let_op() should only be implemented if write access to
247      subexpressions is desired
248    - simplify_ncmul() renamed to eval_ncmul()
249    - simplified_ncmul() renamed to hold_ncmul()
250    - nonsimplified_ncmul() renamed to reeval_ncmul()
251
252 1.0.14 (1 March 2003)
253 * Improved the C-source output: complex numbers are printed correctly (using
254   the STL complex<> template or cln::complex()), rational numbers use cl_RA()
255   in the CLN output, and small integers are printed in a more compact format
256   (e.g. "2.0" instead of "2.0000000e+00").
257 * function_options::set_return_type() and function_options::do_not_evalf_params()
258   now actually work.
259
260 1.0.13 (27 January 2003)
261 * Contracting epsilon tensors with Euclidean indices now works.
262 * Improved dummy index symmetrization in sums.
263 * Added dirac_gammaL/R(), which can be used instead of dirac_gamma6/7()
264   but are single objects, to allow for a more compact notation of Dirac
265   strings.
266 * Powers with negative numeric exponents are printed as fractions in the
267   LaTeX output.
268 * Added symbolic_matrix() for the convenient creation of matrices filled
269   with symbols.
270 * Added collect_common_factors() which collects common factors from the
271   terms of sums.
272 * simplify_indexed() converts "gamma~mu*p.mu" to "p\".
273
274 1.0.12 (30 October 2002)
275 * Fixed a bug in power::expand() that could produce invalid expressions.
276 * The input parser no longer ignores extra data following accepted input.
277 * Improved the CLN C-source output (integers are printed as integers, and
278   floating point numbers include the precision).
279 * Fixed a problem in the LaTeX-output of negative fractions.
280 * Added print_latex() and print_csrc() to ginsh.
281 * The sprem() function is now public.
282
283 1.0.11 (18 September 2002)
284 * Fixed a possible memory corruption in contractions of indexed objects with
285   delta or metric tensors.
286 * Computing the derivative of a power series object with respect to a symbol
287   that is not the expansion variable now works correctly.
288 * Several bugfixes in code generation.
289
290 1.0.10 (24 July 2002)
291 * Powers of indexed objects are now parenthesized correctly in LaTeX output.
292 * Input parser handles indices (they have to be specified in the same list
293   as the symbols).
294 * Added some limited support for subspaces in the idx and tensor classes.
295 * Fixed a bug in canonicalize() (antisymmetric canonicalization of an already
296   sorted list containing two or more equal objects failed to return 0).
297
298 1.0.9 (11 June 2002)
299 * simplify_indexed() now raises/lowers dummy indices to canonicalize the index
300   variance. This allows some simplifications that weren't possible before,
301   like eps~a.b~c~d*X.a*X~b -> 0 and X.a~a-X~a.a -> 0.
302 * Implemented relational::subs().
303 * Fixed bug in simplify_ncmul() for clifford objects.
304
305 1.0.8 (31 March 2002)
306 * Improvements in memory usage of the expand() methods.
307
308 1.0.7 (18 March 2002)
309 * Fixed LaTeX output of indexed and matrix objects.
310 * Fixed matrix::pow(n) for n==0 and added helper functions to create unit
311   matrices "ex unit_matrix(unsigned, unsigned)".
312
313 1.0.6 (4 March 2002)
314 * "(x+1).subs(x==x-1)" now returns the correct result "x" instead of "x-1".
315
316 1.0.5 (27 January 2002)
317 * (l)degree(s), coeff(s, n) and collect(s) were extended to accept expressions
318   of any class (except add/mul/ncmul/numeric) for "s". They should even work
319   if "s" is a "power" object, as long as the exponent is non-integer, but with
320   some limitations. For example, you can "collect(a*2^x+b*2^x, 2^x)" to get
321   "(a+b)*2^x", but "degree(2^(3*x), 2^x)" yields 0 instead of 3).
322 * Fixed a small output bug.
323
324 1.0.4 (24 January 2002)
325 * Speedup in expand().
326 * Faster Bernoulli numbers (Markus Nullmeier).
327 * Some minor bugfixes and documentation updates.
328
329 1.0.3 (21 December 2001)
330 * Fixed a bug where quo() would call vector::reserve() with a negative
331   argument.
332 * Fix several bugs in code generation.
333
334 1.0.2 (19 December 2001)
335 * Input parser recognizes "sqrt()", which is also used in the output.
336 * divide(a,b,q) only modifies q if the division succeeds; also, divide(a,b,a)
337   works now.
338 * Fixed small bug in dummy index renaming which could cause it to not
339   recognize renamable indices in some cases.
340 * power::degree() and power::ldegree() throw an exception when encountering
341   a non-integer exponent.
342 * Add output-support for Python bindings.
343
344 1.0.1 (22 November 2001)
345 * Function sqrfree() handles a few more cases now.
346 * Class relational has real canonical ordering now.
347 * Handle obscene libreadline version numbers when building ginsh.
348
349 1.0.0 (6 November 2001)
350 * Some internal reorganization resulting in a general speed-up.
351 * The last 3 evaluated expressions in ginsh are now referred to with the
352   tokens '%', '%%' and '%%%'. The old '"', '""' and '"""' remain for
353   compatibility but may be removed in a future version of GiNaC.
354
355 0.9.4 (20 September 2001)
356 * Functions have better support for external scripting languages.
357 * Interface cleanups and bugfixes.
358 * Fix silly bug in evalf() that prevented things like 2^Pi being computed.
359
360 0.9.3 (16 August 2001)
361 * series expansion now much more consistent for small order expansion.
362 * lsolve() accepts algorithmic hint as parameter.
363
364 0.9.2 (31 July 2001)
365 * Epsilon tensor is more functional.
366 * simplify_indexed() is better at detecting expressions that vanish for
367   symmetry reasons.
368 * Several little bugfixes and consistency enhancements.
369
370 0.9.1 (27 June 2001)
371 * Ctors of class numeric are not explicit any more.  All built-in callers for
372   pseudofunctions are now templated and default to ex arguments which relaxes
373   the need for explicit ctors.
374 * New functions/methods:
375    - find()
376    - remove_first(), remove_last(), sort() and unique() for lists
377    - symmetrize_cyclic()
378    - decomp_rational()
379 * Instead of just totally symmetric or antisymmetric, complex symmetries
380   can now be defined for indexed objects. Symmetries are described by a
381   tree of "symmetry" objects that is constructed with the sy_none(),
382   sy_symm(), sy_anti() and sy_cycl() functions. The symmetry of a function
383   with respect to its arguments can also be defined (this is currently
384   only used for the Beta function).
385 * Generalized map() to take a function object instead of a function pointer.
386   This allows passing an arbitrary number of additional state to the
387   function being called.
388 * color_trace(), dirac_trace(), diff(), expand(), evalf() and normal() work
389   better with container classes, e.g. using color_trace() on a relation will
390   take the trace on both sides, using diff() on a matrix differentiates every
391   element etc.
392 * diff() works properly with non-commutative products and indexed objects.
393 * New option flag "expand_function_args" for expand().
394 * Supplement some (now deprecated) macros by inlined template functions:
395   - is_of_type(foo, type) -> is_a<type>(foo)
396   - is_ex_of_type(foo, type) -> is_a<type>(foo)
397   - is_exactly_of_type(foo, type) -> is_exactly_a<type>(foo)
398   - is_ex_exactly_of_type(foo, type) -> is_exactly_a<type>(foo)
399   - ex_to_foobar(baz)  ->  ex_to<foobar>(baz)
400 * rem(c, p[x], x) (c: numeric, p[x]: polynomial) erroneously returned p[x]
401   instead of c.
402 * Small bugfixes in pattern matching.
403 * Updated libtool to version 1.4.
404
405 0.9.0 (7 June 2001)
406 * In the output and in ginsh, lists are now delimited by { } braces, and
407   matrices are delimited by single [ ] brackets.
408 * simplify_indexed() renames dummy indices so, e.g., "a.i*a.i+a.j*a.j" gets
409   simplified to "2*a.i*a.i" (or "2*a.j*a.j").
410 * New functions/methods:
411    - canonicalize_clifford() (helpful when comparing expressions containing
412      Dirac matrices)
413    - symmetrize() and antisymmetrize()
414    - numer_denom() (return numerator and denominator in one call)
415    - map() (apply function to subexpressions)
416    - evalm() (evaluate sums, products and integer powers of matrices)
417 * Added a new function match() for performing pattern matching. subs() and
418   has() also accept patterns as arguments. A pattern can be any expression,
419   optionally containing wildcard objects. These are constructed with the
420   call "wild(<unsigned>)" and are denoted as "$0", "$1" etc. in the output
421   and in ginsh.
422 * Positive integer powers of non-commutative expressions (except matrices)
423   are automatically expanded.
424 * Removed cint subdirectory, ginaccint is a separate package now due to 
425   packaging considerations.
426 * Several little bugfixes.
427
428 0.8.3 (11 May 2001)
429 * color and clifford classes are functional and documented.
430 * New "spinidx" class for dotted/undotted indices.
431 * Predefined spinor metric tensor (created by spinor_metric()).
432 * Symbols can have a LaTeX name, e.g. symbol s("s", "\\sigma");
433 * LaTeX output of indexed objects is much nicer.
434 * Fixed some build problems (with recent libreadline).
435 * Semantics of arithmetic operators now follows the C++ rules more strictly.
436
437 0.8.2 (24 April 2001)
438 * degree(), ldegree(), coeff(), lcoeff(), tcoeff() and collect() work with
439   non-symbols as the second argument in ginsh.
440 * the argument to collect() can be a list of objects in which case the
441   result is either a recursively collected polynomial, or a polynomial in
442   a distributed form with terms like coeff*x1^e1*...*xn^en, as specified by
443   the second argument to collect().
444 * Several bugfixes (including a nasty memory leak in .normal()).
445 * class matrix: solve() doesn't call algorithms redundantly any more and
446   inverse() falls back to solve() which works in more general cases.
447
448 0.8.1 (16 April 2001)
449 * degree(), ldegree(), coeff(), lcoeff(), tcoeff() and collect() can now
450   be used with constants, functions and indexed expressions as well, so you
451   can use it to collect by powers of Pi or sin(x), or to find the coefficient
452   of gamma~0.
453   Limitations:
454    - it only works with symbols, constants, functions and indexed expressions,
455      trying to find the coefficient of, e.g., "x^2" or "x+y" won't work;
456    - it does not know about dummy index summations; the coefficient of
457      gamma~0 in p.mu*gamma~mu should be p.0 but is returned as 0;
458    - using coeff(), tcoeff(), lcoeff() or collect() on elements of
459      noncommutative products might return wrong or surprising results.
460 * subs() no longer only substitutes symbols and indices but performs a more
461   general "syntactic substitution", i.e. it substitutes whole objects in sub-
462   expressions. You can subs((a+b)^2,a+b==3) and get 9, but subs(a+b+c,a+b==3)
463   doesn't do anything.
464   Limitations:
465    - substituting numerics (subs(expr, 2==4)) will not replace then in all
466      occurences; in general, you shouldn't substitute numerics, though.
467 * Added preliminary (re)implementations of color and clifford classes.
468 * simplify_indexed(): contraction of symmetric and antisymmetric tensors
469   is zero.
470 * Replaced the various print*() member functions by a single print() that
471   takes a print_context object that determines the output formatting. This
472   should make it easier to add more output types, such as LaTeX output,
473   which is based on work by Stefan Weinzierl.
474 * Added functions to retrieve the properties stored in archive objects
475   outside of unarchive() (for printing or debugging purposes).
476 * Some bugfixes (indexed objects, archive writing).
477 * .collect() on non-polynomials is now algebraically correct.
478
479 0.8.0 (24 March 2001)
480 * Complete revamp of indexed objects. Instead of multiple classes for
481   indexed things and their indices there is now only one "indexed" class
482   and two types of indices: "idx" for simple indices and "varidx" for
483   indices with variance. There are predefined delta, epsilon and metric
484   tensors, and a function simplify_indexed() that performs canonicalization
485   and dummy index summations. Matrix objects can be indexed for doing simple
486   linear algebra.
487 * Added an option "expand_indexed" to expand() to perform expansion of
488   indexed objects like (a+b).i -> a.i + b.i
489 * Renamed get_indices() to get_free_indices(), which no longer returns
490   dummy indices and checks the consistency of indices in sums.
491 * sqrfree() factorization fixed and improved syntactically.
492 * subs() works on matrices.
493 * Matrices can be constructed from flat list of elements; diagonal matrices
494   can be constructed from list of diagonal elements with diag_matrix().
495 * Fixed memory leak in expand().
496 * Operator% for objects of class ncmul has gone.  Use operator* now for that
497   case too, which is much more natural.
498
499 0.7.3 (28 February 2001)
500 * Several bugfixes and minor performance tunings.
501 * Added a section to the tutorial about adding new algebraic classes to GiNaC.
502 * Closed many in-source documentation gaps.
503
504 0.7.2 (17 February 2001)
505 * Several bugfixes in power series expansion, one of them critical.
506
507 0.7.1 (7 February 2001)
508 * Fix problems with Cint that were caused by CLN's overloaded operator new.
509 * Fix compilation errors with GCC3.
510 * normal() handles large sums of fractions better and normalizes the exponent
511   of power expressions.
512 * expand() always expands the exponent and transforms x^(a+b) -> x^a*x^b.
513 * Some bugfixes of series expansion around branch cuts of special functions.
514
515 0.7.0 (15 December 2000)
516 * Requires CLN 1.1 now.  Class numeric doesn't use an indirect pointer to the
517   actual representation any more.  This is a speedup.
518 * mul::expand() was reengineered to not allocate excess temporary memory.
519 * Non-integer powers of a symbol are treated as constants by (l)degree() and
520   coeff().  Using these functions on an expression containing such powers used
521   to fail with an internal error message.  The side-effect is that collect()
522   can be used on expressions which are not polynomials.
523 * Added a man page for the ginac-config script.
524 * Ctor of numeric from char* honors Digits.
525
526 0.6.4 (10 August 2000)
527 * Complete revamp of methods in class matrix.  Some redundant (and poor)
528   implementations of elimination schemes were thrown out.  The code is now
529   highly orthogonal, more flexible and much more efficient.
530 * Some long standing and quite nasty bugs were discovered and fixed in the
531   following functions: add::normal(), heur_gcd(), sr_gcd() and Order_eval().
532
533 0.6.3 (25 July 2000)
534 * Derivatives are now assembled in a slightly different manner (i.e. they
535   might 'look' different on first sight).  Under certain circumstances this
536   can result in a dramatic speedup because it gives hashing a better chance,
537   especially when computing higher derivatives.
538 * Some series expansions of built-in functions have been reengineered.
539 * The algorithm for computing determinants can be chosen by the user.  See
540   ginac/flags.h and ginac/matrix.h.
541 * The Dilogarithm (Li2) now has floating point evaluation, derivative and a
542   proper series expansion.
543 * Namespace 'std' cleanly disentangled, as demanded by ISO/EIC 14882-1998(E).
544 * Some minor bugfixes, one major lsolve()-bugfix and documentation updates.
545
546 0.6.2 (21 June 2000)
547 * ginaccint.bin is now launched by a binary program instead of by a scripts.
548   This allows us to write #!-scripts.  A small test suite for GiNaC-cint was
549   added.
550 * Several minor bugfixes.
551
552 0.6.1 (18 May 2000)
553 * Cleanup in the interface to Cint.  The required version is now Cint 5.14.38.
554 * Several bugfixes in target install.
555
556 0.6.0 (11 May 2000)
557 * IMPORTANT: Several interface changes make programs written with GiNaC 
558   much clearer but break compatibility with older versions:
559   - f(x).series(x,p[,o]) -> f(x).series(x==p,o)
560   - series(f(x),x,p[,o]) -> series(f(x),x==p,o)
561   - gamma() -> tgamma()  (The true Gamma function, there is now also
562     log(tgamma()), called lgamma(), in accord with ISO/IEC 9899:1999.)
563   - EulerGamma -> Euler
564 * #include'ing ginac.h defines the preprocessor symbols GINACLIB_MAJOR_VERSION,
565   GINACLIB_MINOR_VERSION, and GINACLIB_MICRO_VERSION with the respective GiNaC
566   library version numbers.
567 * Expressions can be constructed from strings like this:
568     ex e("2*x+y", lst(x, y));
569 * ex::to_rational() provides a way to extend the domain of functions like
570   gcd() and divide() that only work on polynomials or rational functions (the
571   good old ex::subs() method reverses this process)
572 * Calling diff() on a function that has no derivative defined returns the
573   inert derivative function "Derivative".
574 * Several new timings in the check target.  Some of them may be rather rude 
575   at your machine, feel free to interrupt them.
576
577 0.5.4 (15 March 2000)
578 * Some algorithms in class matrix (notably determinant) were replaced by
579   less brain-dead ones and should now have much better performance.
580 * Checks were completely reorganized and split up into three parts:
581   a) exams (small regression tests with predefined input)
582   b) checks (lenghty coherence checks with random input)
583   c) timings (for coherence and crude benchmarking)
584 * Behaviour of .evalf() was changed: it doesn't .evalf() any exponents.
585 * Expanded expressions now remember they are expanded to prevent
586   superfluous expansions.
587 * Small bugfixes and improvements in the series expansion.
588
589 0.5.3 (23 February 2000)
590 * A more flexible scheme for registering functions was implemented,
591   allowing for remembering, too.
592 * Some Bugfixes.
593
594 0.5.2 (16 February 2000)
595 * Mainly fixes a bug in the packaging of release 0.5.1.
596
597 0.5.1 (14 February 2000)
598 * Fixes a small number of bugs.
599
600 0.5.0 (7 February 2000)
601 * Expressions can be written ("archived") to files and read therefrom.
602 * Addition of GiNaC-cint, which lets you write complete programs in
603   an interactive shell-like manner in your favoured programming
604   language (i.e. C++).
605
606 0.4.1 (13 December 1999)
607 * Series Expansion of Gamma function and some other trigonometric
608   functions at their poles works now.
609 * Many more evaluations of special functions at points where
610   exact results exist.
611 * info_flags::rational doesn't return true for complex extensions
612   any more---use info_flags::crational for the old behaviour.
613   info_flags::integer and -::cinteger work similarly, the same
614   holds for types like info_flags::rational_polynomial.
615
616 0.4.0 (26 November 1999)
617 * First public release.