]> www.ginac.de Git - ginac.git/blob - NEWS
- Derivatives are now assembled in a slightly different manner (i.e. they
[ginac.git] / NEWS
1 This file records noteworthy changes.
2
3 0.6.3 (xx July 2000)
4 * Derivatives are now assembled in a slightly different manner (i.e. they 
5   'look' different on first sight).  Under certain circumstances this can 
6   result in a dramatic speedup because it gives hashing a better chance, 
7   especially when computing higher derivatives.
8 * Many series expansions of built-in functions have been reengineered.
9 * The Dilogarithm (Li2) now has floating point evaluation, derivative and a
10   proper series expansion.
11 * Namespace 'std' cleanly disentangled, as demanded by ISO/EIC 14882-1998(E).
12
13 0.6.2 (21 June 2000)
14 * ginaccint.bin is now launched by a binary program instead of by a scripts.
15   This allows us to write #!-scripts.  A small test suite for GiNaC-cint was
16   added.
17 * Several minor bugfixes.
18
19 0.6.1 (18 May 2000)
20 * Cleanup in the interface to Cint.  The required version is now Cint 5.14.38.
21 * Several bugfixes in target install.
22
23 0.6.0 (11 May 2000)
24 * IMPORTANT: Several interface changes make programs written with GiNaC 
25   much clearer but break compatibility with older versions:
26   - f(x).series(x,p[,o]) -> f(x).series(x==p,o)
27   - series(f(x),x,p[,o]) -> series(f(x),x==p,o)
28   - gamma() -> tgamma()  (The true Gamma function, there is now also
29     log(tgamma()), called lgamma(), in accord with ISO/IEC 9899:1999.)
30   - EulerGamma -> Euler
31 * #include'ing ginac.h defines the preprocessor symbols GINACLIB_MAJOR_VERSION,
32   GINACLIB_MINOR_VERSION, and GINACLIB_MICRO_VERSION with the respective GiNaC
33   library version numbers.
34 * Expressions can be constructed from strings like this:
35     ex e("2*x+y", lst(x, y));
36 * ex::to_rational() provides a way to extend the domain of functions like
37   gcd() and divide() that only work on polynomials or rational functions (the
38   good old ex::subs() method reverses this process)
39 * Calling diff() on a function that has no derivative defined returns the
40   inert derivative function "Derivative".
41 * Several new timings in the check target.  Some of them may be rather rude 
42   at your machine, feel free to interrupt them.
43
44 0.5.4 (15 March 2000)
45 * Some algorithms in class matrix (notably determinant) were replaced by
46   less brain-dead ones and should now have much better performance.
47 * Checks were completely reorganized and split up into three parts:
48   a) exams (small regression tests with predefined input)
49   b) checks (lenghty coherence checks with random input)
50   c) timings (for coherence and crude benchmarking)
51 * Behaviour of .evalf() was changed: it doesn't .evalf() any exponents.
52 * Expanded expressions now remember they are expanded to prevent
53   superfluous expansions.
54 * Small bugfixes and improvements in the series expansion.
55
56 0.5.3 (23 February 2000)
57 * A more flexible scheme for registering functions was implemented,
58   allowing for remembering, too.
59 * Some Bugfixes.
60
61 0.5.2 (16 February 2000)
62 * Mainly fixes a bug in the packaging of release 0.5.1.
63
64 0.5.1 (14 February 2000)
65 * Fixes a small number of bugs.
66
67 0.5.0 (7 February 2000)
68 * Expressions can be written ("archived") to files and read therefrom.
69 * Addition of GiNaC-cint, which lets you write complete programs in
70   an interactive shell-like manner in your favoured programming
71   language (i.e. C++).
72
73 0.4.1 (13 December 1999)
74 * Series Expansion of Gamma function and some other trigonometric
75   functions at their poles works now.
76 * Many more evaluations of special functions at points where
77   exact results exist.
78 * info_flags::rational doesn't return true for complex extensions
79   any more---use info_flags::crational for the old behaviour.
80   info_flags::integer and -::cinteger work similarly, the same
81   holds for types like info_flags::rational_polynomial.
82
83 0.4.0 (26 November 1999)
84 * First public release.