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