]> www.ginac.de Git - ginac.git/blob - NEWS
pseries::power_const: fix a critical bug that led to wrong computations.
[ginac.git] / NEWS
1 This file records noteworthy changes.
2
3 0.7.1 (7 February 2001)
4 * Fix problems with Cint that were caused by CLN's overloaded operator new.
5 * Fix compilation errors with GCC3.
6 * normal() handles large sums of fractions better and normalizes the exponent
7   of power expressions.
8 * expand() always expands the exponent and transforms x^(a+b) -> x^a*x^b.
9 * Some bugfixes of series expansion around branch cuts of special functions.
10
11 0.7.0 (15 December 2000)
12 * Requires CLN 1.1 now.  Class numeric doesn't use an indirect pointer to the
13   actual representation any more.  This is a speedup.
14 * mul::expand() was reengineered to not allocate excess temporary memory.
15 * Non-integer powers of a symbol are treated as constants by (l)degree() and
16   coeff().  Using these functions on an expression containing such powers used
17   to fail with an internal error message.  The side-effect is that collect()
18   can be used on expressions which are not polynomials.
19 * Added a man page for the ginac-config script.
20 * Ctor of numeric from char* honors Digits.
21
22 0.6.4 (10 August 2000)
23 * Complete revamp of methods in class matrix.  Some redundant (and poor)
24   implementations of elimination schemes were thrown out.  The code is now
25   highly orthogonal, more flexible and much more efficient.
26 * Some long standing and quite nasty bugs were discovered and fixed in the
27   following functions: add::normal(), heur_gcd(), sr_gcd() and Order_eval().
28
29 0.6.3 (25 July 2000)
30 * Derivatives are now assembled in a slightly different manner (i.e. they
31   might 'look' different on first sight).  Under certain circumstances this
32   can result in a dramatic speedup because it gives hashing a better chance,
33   especially when computing higher derivatives.
34 * Some series expansions of built-in functions have been reengineered.
35 * The algorithm for computing determinants can be chosen by the user.  See
36   ginac/flags.h and ginac/matrix.h.
37 * The Dilogarithm (Li2) now has floating point evaluation, derivative and a
38   proper series expansion.
39 * Namespace 'std' cleanly disentangled, as demanded by ISO/EIC 14882-1998(E).
40 * Some minor bugfixes, one major lsolve()-bugfix and documentation updates.
41
42 0.6.2 (21 June 2000)
43 * ginaccint.bin is now launched by a binary program instead of by a scripts.
44   This allows us to write #!-scripts.  A small test suite for GiNaC-cint was
45   added.
46 * Several minor bugfixes.
47
48 0.6.1 (18 May 2000)
49 * Cleanup in the interface to Cint.  The required version is now Cint 5.14.38.
50 * Several bugfixes in target install.
51
52 0.6.0 (11 May 2000)
53 * IMPORTANT: Several interface changes make programs written with GiNaC 
54   much clearer but break compatibility with older versions:
55   - f(x).series(x,p[,o]) -> f(x).series(x==p,o)
56   - series(f(x),x,p[,o]) -> series(f(x),x==p,o)
57   - gamma() -> tgamma()  (The true Gamma function, there is now also
58     log(tgamma()), called lgamma(), in accord with ISO/IEC 9899:1999.)
59   - EulerGamma -> Euler
60 * #include'ing ginac.h defines the preprocessor symbols GINACLIB_MAJOR_VERSION,
61   GINACLIB_MINOR_VERSION, and GINACLIB_MICRO_VERSION with the respective GiNaC
62   library version numbers.
63 * Expressions can be constructed from strings like this:
64     ex e("2*x+y", lst(x, y));
65 * ex::to_rational() provides a way to extend the domain of functions like
66   gcd() and divide() that only work on polynomials or rational functions (the
67   good old ex::subs() method reverses this process)
68 * Calling diff() on a function that has no derivative defined returns the
69   inert derivative function "Derivative".
70 * Several new timings in the check target.  Some of them may be rather rude 
71   at your machine, feel free to interrupt them.
72
73 0.5.4 (15 March 2000)
74 * Some algorithms in class matrix (notably determinant) were replaced by
75   less brain-dead ones and should now have much better performance.
76 * Checks were completely reorganized and split up into three parts:
77   a) exams (small regression tests with predefined input)
78   b) checks (lenghty coherence checks with random input)
79   c) timings (for coherence and crude benchmarking)
80 * Behaviour of .evalf() was changed: it doesn't .evalf() any exponents.
81 * Expanded expressions now remember they are expanded to prevent
82   superfluous expansions.
83 * Small bugfixes and improvements in the series expansion.
84
85 0.5.3 (23 February 2000)
86 * A more flexible scheme for registering functions was implemented,
87   allowing for remembering, too.
88 * Some Bugfixes.
89
90 0.5.2 (16 February 2000)
91 * Mainly fixes a bug in the packaging of release 0.5.1.
92
93 0.5.1 (14 February 2000)
94 * Fixes a small number of bugs.
95
96 0.5.0 (7 February 2000)
97 * Expressions can be written ("archived") to files and read therefrom.
98 * Addition of GiNaC-cint, which lets you write complete programs in
99   an interactive shell-like manner in your favoured programming
100   language (i.e. C++).
101
102 0.4.1 (13 December 1999)
103 * Series Expansion of Gamma function and some other trigonometric
104   functions at their poles works now.
105 * Many more evaluations of special functions at points where
106   exact results exist.
107 * info_flags::rational doesn't return true for complex extensions
108   any more---use info_flags::crational for the old behaviour.
109   info_flags::integer and -::cinteger work similarly, the same
110   holds for types like info_flags::rational_polynomial.
111
112 0.4.0 (26 November 1999)
113 * First public release.