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