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