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