X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=NEWS;h=b6f609df95c2ee87083120e7d350973b14d90e98;hp=db9c346f0b4bb0a8c3373ee7504149b5adcb08b4;hb=db81420a61959540b71507fe0d3737d06eee54dc;hpb=ed3e442837c92f294ced63096329b4d27dd328a4 diff --git a/NEWS b/NEWS index db9c346f..b6f609df 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,13 @@ This file records noteworthy changes. 1.3.0 () +1.2.1 (23 April 2004) +* Fixed infinite recursion in atan2_evalf() and improved atan2_eval(). +* Added automatic evaluations for trigonometric functions with negative + arguments (e.g. sin(-2) -> -sin(2)). +* Fixed a static initialization order goof-up. +* Fixed various bugs in series expansion. + 1.2.0 (19 March 2004) * Added a structure template class for the easy creation of user-defined algebraic classes. @@ -285,8 +292,8 @@ This file records noteworthy changes. * Supplement some (now deprecated) macros by inlined template functions: - is_of_type(foo, type) -> is_a(foo) - is_ex_of_type(foo, type) -> is_a(foo) - - is_exaclty_of_type(foo, type) -> is_exaclty_a(foo) - - is_ex_exaclty_of_type(foo, type) -> is_exaclty_a(foo) + - is_exactly_of_type(foo, type) -> is_exactly_a(foo) + - is_ex_exactly_of_type(foo, type) -> is_exactly_a(foo) - ex_to_foobar(baz) -> ex_to(baz) * rem(c, p[x], x) (c: numeric, p[x]: polynomial) erroneously returned p[x] instead of c.