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