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