/[GiNaC]/ginac/add.cpp
ViewVC logotype

Log of /ginac/add.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Links to HEAD: (view) (annotate)
Links to release_1-0-10: (view) (annotate)
Sticky Tag:

Revision 1.61 - (view) (annotate) - [select for diffs]
Thu Jan 24 22:28:20 2002 UTC (11 years, 4 months ago) by kreckel
Branch: MAIN
CVS Tags: release_1-0-10, release_1-0-4, release_1-0-6, release_1-0-7, release_1-0-8, release_1-0-9
Changes since 1.60: +1 -1 lines
Diff to previous 1.60
* Finilize version 1.0.4 (version numbers, copyrights and such rubbish).


Revision 1.60 - (view) (annotate) - [select for diffs]
Fri Dec 21 17:32:23 2001 UTC (11 years, 5 months ago) by kreckel
Branch: MAIN
CVS Tags: release_1-0-3
Branch point for: ginac_1-1
Changes since 1.59: +5 -5 lines
Diff to previous 1.59
* Fix thinkos in print_csrc context.
  (Cebix: read the implementations of ex::compare() and basic::compare()!!!)


Revision 1.59 - (view) (annotate) - [select for diffs]
Wed Dec 19 19:06:24 2001 UTC (11 years, 5 months ago) by kreckel
Branch: MAIN
CVS Tags: release_1-0-2
Changes since 1.58: +2 -4 lines
Diff to previous 1.58
* Remove check for empty seq in Python output.


Revision 1.58 - (view) (annotate) - [select for diffs]
Wed Dec 19 16:16:16 2001 UTC (11 years, 5 months ago) by kreckel
Branch: MAIN
Changes since 1.57: +13 -1 lines
Diff to previous 1.57
* Added output-support for Python bindings and LaTeX printing for
  indexed objects (Pearu Peterson).
* relational.*: Removed superfluous is_equal_same_type()...
* inifcns_trans.cpp: ...added extern declaration as workaround for
  compiler-bug triggered by changes to relational.*,
* input_parser.yy: added missing namespace specification.


Revision 1.57 - (view) (annotate) - [select for diffs]
Fri Nov 16 15:59:12 2001 UTC (11 years, 6 months ago) by kreckel
Branch: MAIN
CVS Tags: release_1-0-1
Changes since 1.56: +3 -3 lines
Diff to previous 1.56
* Some minor optimization glitches.


Revision 1.56 - (view) (annotate) - [select for diffs]
Fri Oct 26 15:08:24 2001 UTC (11 years, 7 months ago) by kreckel
Branch: MAIN
CVS Tags: release_1-0-0
Changes since 1.55: +2 -13 lines
Diff to previous 1.55
* As agreed upon at lunch, remove debugmsg since it is hardly of any use.


Revision 1.55 - (view) (annotate) - [select for diffs]
Mon Oct 22 13:59:51 2001 UTC (11 years, 7 months ago) by kreckel
Branch: MAIN
Changes since 1.54: +23 -23 lines
Diff to previous 1.54
* Some internal reorganization WRT flyweight handling and initialization,
  resulting in a general speed-up.
  Wherever thou hast written _ex7() thou shalt write _ex7 from now on.


Revision 1.54 - (view) (annotate) - [select for diffs]
Wed Aug 22 16:11:50 2001 UTC (11 years, 9 months ago) by kreckel
Branch: MAIN
CVS Tags: release_0-9-4
Changes since 1.53: +5 -5 lines
Diff to previous 1.53
- Cleanups: My evil plot of making ex::bp private may finally be carried
  out, provided one changes all the is_of_type(obj,type) to is_a<type>(obj)
  which we don't do right now because it would degrade performance on
  gcc-2.95.x.  Also, ex_to_type(obj) has gone for good now, we have been
  having ex_to<type>(obj) long enough.  ex_to_nonconst_type(obj) have gone
  as well, since they are almost never used and one can always cast aways
  the constness explicitly if need should arise.


Revision 1.53 - (view) (annotate) - [select for diffs]
Mon Aug 20 18:00:45 2001 UTC (11 years, 9 months ago) by kreckel
Branch: MAIN
Changes since 1.52: +7 -7 lines
Diff to previous 1.52
- carried on with felonious plot about making ex::bp private.


Revision 1.52 - (view) (annotate) - [select for diffs]
Sat Jul 28 14:50:28 2001 UTC (11 years, 9 months ago) by kreckel
Branch: MAIN
CVS Tags: release_0-9-2, release_0-9-3
Changes since 1.51: +7 -3 lines
Diff to previous 1.51
- Move several comments into doxygen comment blocks.


Revision 1.51 - (view) (annotate) - [select for diffs]
Tue Jun 26 20:32:01 2001 UTC (11 years, 11 months ago) by cbauer
Branch: MAIN
CVS Tags: release_0-9-1
Changes since 1.50: +5 -3 lines
Diff to previous 1.50
- replaced the Derivative() function by a more resonable fderivative class;
  to see it in action, try "series(abs(x),x==0,3)" and "series(abs(x),x==y,3)"
  in ginsh with previous GiNaC releases and with this one
- add::eval() throws an exception when the first term is non-commutative and
  the overall_coeff is non-zero
- small fixes to print_tree output of indexed objects
- ncmul::expand() now actually does expand something like "(dirac_gamma(mu)+1)
  *dirac_gamma(nu)" correctly (but the change to add::eval() should make this
  a "can't happen" case)
- moved ToString() to tostring.h (fewer header dependencies)
- ALL YOUR "BASES CLASSES" ARE BELONG TO US


Revision 1.50 - (view) (annotate) - [select for diffs]
Mon Jun 25 18:04:03 2001 UTC (11 years, 11 months ago) by cbauer
Branch: MAIN
Changes since 1.49: +0 -3 lines
Diff to previous 1.49
some more comments and cleanups to mul::expand() and ncmul::expand()


Revision 1.49 - (view) (annotate) - [select for diffs]
Sun Jun 24 20:18:10 2001 UTC (11 years, 11 months ago) by kreckel
Branch: MAIN
Changes since 1.48: +2 -2 lines
Diff to previous 1.48
some cleanups


Revision 1.48 - (view) (annotate) - [select for diffs]
Sat Jun 23 12:52:04 2001 UTC (11 years, 11 months ago) by cbauer
Branch: MAIN
Changes since 1.47: +3 -3 lines
Diff to previous 1.47
- added find() (like has(), but returns list of all occurrences)
- added lst::sort() and lst::unique()
- status_flags::expanded is only taken into account when no expand options
  are specified. This makes it possible to re-expand with other options.
- added expand_options::expand_function_args
- collect(foo, {}) doesn't crash any more
- introduced match_same_type() method which is slightly similar to
  is_equal_same_type() but doesn't check subexpressions. Fixed a number of
  match() bugs with this (e.g. a==b matched a!=b, and matrices with different
  dimensions but the same number of elements could match). Only container
  classes with additional member variables that have to be equal for a match
  need to implement match_same_type().


Revision 1.47 - (view) (annotate) - [select for diffs]
Thu Jun 21 21:03:27 2001 UTC (11 years, 11 months ago) by cbauer
Branch: MAIN
Changes since 1.46: +59 -45 lines
Diff to previous 1.46
some cleanups


Revision 1.46 - (view) (annotate) - [select for diffs]
Tue Jun 19 15:50:02 2001 UTC (11 years, 11 months ago) by cbauer
Branch: MAIN
Changes since 1.45: +14 -6 lines
Diff to previous 1.45
- The default implementations of evalf(), diff(), normal() and expand() use
  map() where useful. This has the nice effect of having a more reasonable
  default behaviour for container functions (most of the evalfchildren() etc.
  stuff is gone).
- diff() works with non-commutative products (product rule) and no longer
  bails on indexed objects.
- added decomp_rational()
- added sqrfree_parfrac() which doesn't yet work in the general case and
  is unsupported


Revision 1.45 - (view) (annotate) - [select for diffs]
Sat Jun 16 14:38:09 2001 UTC (11 years, 11 months ago) by kreckel
Branch: MAIN
Changes since 1.44: +17 -17 lines
Diff to previous 1.44
* Supplement some (now deprecated) macros by inlined template functions:
  - ex_to_foobar(baz)  ->  ex_to<foobar>(baz).


Revision 1.44 - (view) (annotate) - [select for diffs]
Fri Jun 15 15:20:55 2001 UTC (11 years, 11 months ago) by kreckel
Branch: MAIN
Changes since 1.43: +9 -9 lines
Diff to previous 1.43
* Supplement some (now deprecated) macros by inlined template functions:
  - is_of_type(foo, type) -> is_a<type>(foo)
  - is_ex_of_type(foo, type) -> is_a<type>(foo)
  - is_exaclty_of_type(foo, type) -> is_exaclty_a<type>(foo)
  - is_ex_exaclty_of_type(foo, type) -> is_exaclty_a<type>(foo)


Revision 1.43 - (view) (annotate) - [select for diffs]
Fri Jun 1 18:50:00 2001 UTC (11 years, 11 months ago) by cbauer
Branch: MAIN
CVS Tags: release_0-9-0
Changes since 1.42: +33 -0 lines
Diff to previous 1.42
- in the output, list delimiters are now { } and matrix delimiters are [ ]
- added evalm() method for evaluating sums and products of matrices
- added map() method for applying a function to subexpressions
- power(noncommut, posint) automatically expands the product, removed ncpow()


Revision 1.42 - (view) (annotate) - [select for diffs]
Sat May 19 17:37:44 2001 UTC (12 years ago) by cbauer
Branch: MAIN
Changes since 1.41: +17 -25 lines
Diff to previous 1.41
replaced "precedence" static member variable by virtual precedence() function


Revision 1.41 - (view) (annotate) - [select for diffs]
Fri May 4 19:29:42 2001 UTC (12 years ago) by kreckel
Branch: MAIN
CVS Tags: release_0-8-3
Changes since 1.40: +6 -8 lines
Diff to previous 1.40
* add::coeff(): don't epvector::reserve() more terms than we'll actually
  need and don't epvector::push_back() all those _ex0()'s into coeffseq.


Revision 1.40 - (view) (annotate) - [select for diffs]
Sat Apr 14 20:28:18 2001 UTC (12 years, 1 month ago) by kreckel
Branch: MAIN
CVS Tags: release_0-8-1, release_0-8-2
Changes since 1.39: +16 -5 lines
Diff to previous 1.39
* basic::collec() never worked correctly on non-polynomials till now.
  We simply correct for the missing terms, which makes it at least
  algebraically correct (suggested by Pearu Peterson).
* Added support to print out LaTeX-style, based on some work by Stefan
  Weinzierl:
  - print.h: added a class print_latex().
  - function.pl: added function_options::latex_name() because there was
    no good way of setting that name before.
  - inifncs*.cpp: use it.
  - *.cpp: switch to see if print_context is actually print_latex and
    then change the style.
* Fixed some stupid bugs in sections that were #define'd away for gcc-2.95.


Revision 1.39 - (view) (annotate) - [select for diffs]
Fri Apr 13 14:27:34 2001 UTC (12 years, 1 month ago) by kreckel
Branch: MAIN
Changes since 1.38: +4 -1 lines
Diff to previous 1.38
* add::print() shouldn't put parens around overall_coeff.


Revision 1.38 - (view) (annotate) - [select for diffs]
Fri Apr 6 19:39:47 2001 UTC (12 years, 1 month ago) by cbauer
Branch: MAIN
Changes since 1.37: +2 -2 lines
Diff to previous 1.37
something like 2/3*a is no longer printed as (2/3)*a


Revision 1.37 - (view) (annotate) - [select for diffs]
Fri Apr 6 19:02:58 2001 UTC (12 years, 1 month ago) by cbauer
Branch: MAIN
Changes since 1.36: +90 -92 lines
Diff to previous 1.36
- replaced the various print*() member functions by a single print() that
  takes a print_context object that determines the output formatting; this
  should make it easier to add more output types
- print_tree output of indexed objects looks better


Revision 1.36 - (view) (annotate) - [select for diffs]
Mon Apr 2 16:57:38 2001 UTC (12 years, 1 month ago) by cbauer
Branch: MAIN
Changes since 1.35: +3 -3 lines
Diff to previous 1.35
degree(), ldegree(), coeff(), lcoeff(), tcoeff() and collect() can now
be used with constants and indexed expressions as well, so you can use
it to collect by powers of Pi or find the coefficient of gamma~0.
Limitations:
 - it only works with symbols, constants and indexed expressions;
   trying to find the coefficient of, e.g., "x^2" or "x+y" won't work
 - it does not know about dummy index summations; the coefficient of
   gamma~0 in p.mu*gamma~mu should be p.0 but is returned as 0
 - using the functions on elements of noncommutative products might
   return wrong or surprising results


Revision 1.35 - (view) (annotate) - [select for diffs]
Tue Mar 27 20:36:37 2001 UTC (12 years, 2 months ago) by cbauer
Branch: MAIN
Changes since 1.34: +3 -31 lines
Diff to previous 1.34
- added skeleton implementation of color and clifford classes (don't bother
  trying it, it doesn't work yet)
- some macros in utils.h (DEFAULT_*) provide shorthands for implementing
  many required class member functions


Revision 1.34 - (view) (annotate) - [select for diffs]
Tue Mar 6 17:07:16 2001 UTC (12 years, 2 months ago) by cbauer
Branch: MAIN
CVS Tags: release_0-8-0
Changes since 1.33: +0 -11 lines
Diff to previous 1.33
- revamped indexed objects
- subs() works on matrices


Revision 1.33 - (view) (annotate) - [select for diffs]
Wed Feb 28 12:54:52 2001 UTC (12 years, 2 months ago) by kreckel
Branch: MAIN
CVS Tags: release_0-7-3
Changes since 1.32: +32 -49 lines
Diff to previous 1.32
* ginac/registrar.h: dtor is inlined now.
* ginac/basic.h, ginac/ex.h: removed INLINE_FOO_CONSTRUCTORS and hand-inlined
  stuff instead, since the macros turned out to get in the way while
  fine-tuning the inlining.
* ginac/utils.h: if 'long long' works, use that one for computing the hash
  value instead of floating point tricks.  2 Reasons: on Intel the assembler
  is terrible and slow otherwise, 'long long' will appear in C++ anyways when
  they adapt to the C99 standard.
* Several other small performance tweaks.
* ginac/constant.cpp: (constant::calchash()) implement, caring for serial.
* ginac/function.pl (function::calchash()): implement, caring for serial.
* ginac/expairseq.cpp: honor coeff's hash value.
* ginac/pseries.cpp: (pseries::power_const()) fix problems with zero pseries.
* Added several pounds of in-source documentation in doxygen style.


Revision 1.32 - (view) (annotate) - [select for diffs]
Sat Feb 17 18:07:08 2001 UTC (12 years, 3 months ago) by kreckel
Branch: MAIN
CVS Tags: release_0-7-2
Changes since 1.31: +11 -13 lines
Diff to previous 1.31
pseries::expand(): do not generate zero terms.
pseries::print(): print trivial case, too.
others: documentation updates.


Revision 1.31 - (view) (annotate) - [select for diffs]
Fri Feb 16 17:25:47 2001 UTC (12 years, 3 months ago) by cbauer
Branch: MAIN
Changes since 1.30: +0 -6 lines
Diff to previous 1.30
GINAC_DECLARE_REGISTERED_CLASS declares duplicate() and compare_same_type(),
GINAC_IMPLEMENT_REGISTERED_CLASS implements duplicate()


Revision 1.30 - (view) (annotate) - [select for diffs]
Thu Feb 15 19:54:52 2001 UTC (12 years, 3 months ago) by cbauer
Branch: MAIN
Changes since 1.29: +0 -22 lines
Diff to previous 1.29
the destructor, copy constructor, and assignment operator (which were the
same for all subclasses of basic, with very few exceptions) are now included
in the GINAC_IMPLEMENT_REGISTERED_CLASS macro; the GINAC_DECLARE_REGISTERED_CLASS
macro also defines these (and other common) member functions


Revision 1.29 - (view) (annotate) - [select for diffs]
Wed Feb 14 16:04:18 2001 UTC (12 years, 3 months ago) by cbauer
Branch: MAIN
Changes since 1.28: +0 -19 lines
Diff to previous 1.28
removed the "some_*" and "typeid_*" definitions since we are using our own
RTTI for quite some time now


Revision 1.28 - (view) (annotate) - [select for diffs]
Mon Jan 22 15:12:07 2001 UTC (12 years, 4 months ago) by kreckel
Branch: MAIN
CVS Tags: release_0-7-1
Changes since 1.27: +1 -1 lines
Diff to previous 1.27
- See if __GNUC__ < 2.97 before using std::vector<..,malloc_alloc>.  Sorry,
  there is no way having this depend on whether we are setting up Cint or
  not because the malloc_alloc goes into the mangled signature and the
  result won't link if one tries to be more clever.  It really sucks.
  Let's all just pray Masaharu throws away that old STL implementation
  really soon now.  (Jeez, he still calls this old junk 'reference'!)
- Bumped up a few dates.  :-)


Revision 1.27 - (view) (annotate) - [select for diffs]
Sat Sep 23 17:36:50 2000 UTC (12 years, 8 months ago) by kreckel
Branch: MAIN
CVS Tags: release_0-7-0
Changes since 1.26: +1 -1 lines
Diff to previous 1.26
- pseries::print(): did not insert parenthesis when needed for precedence.
- pseries::precedence: was missing (thus being inherited from basic).
- add::print(): was not honoring upper_precedence for rest.


Revision 1.26 - (view) (annotate) - [select for diffs]
Mon Aug 28 12:54:45 2000 UTC (12 years, 8 months ago) by cbauer
Branch: MAIN
Changes since 1.25: +3 -3 lines
Diff to previous 1.25
- removed non-sources from CVS


Revision 1.25 - (view) (annotate) - [select for diffs]
Mon Aug 14 12:21:06 2000 UTC (12 years, 9 months ago) by kreckel
Branch: MAIN
Changes since 1.24: +1 -1 lines
Diff to previous 1.24
- Inserted some more std:: to make it compile under GCC2.96.


Revision 1.24 - (view) (annotate) - [select for diffs]
Fri Aug 11 17:39:36 2000 UTC (12 years, 9 months ago) by cbauer
Branch: MAIN
Changes since 1.23: +3 -5 lines
Diff to previous 1.23
- more indentation fixes


Revision 1.23 - (view) (annotate) - [select for diffs]
Fri Aug 11 15:07:15 2000 UTC (12 years, 9 months ago) by cbauer
Branch: MAIN
Changes since 1.22: +316 -319 lines
Diff to previous 1.22
- indentation is now done with tabs
- printtree() prints the class names as known to the registrar, not the
  (mangled) class names from typeid().name()


Revision 1.22 - (view) (annotate) - [select for diffs]
Thu Jul 20 21:12:40 2000 UTC (12 years, 10 months ago) by kreckel
Branch: MAIN
CVS Tags: release_0-6-3, release_0-6-4
Changes since 1.21: +5 -5 lines
Diff to previous 1.21
- Derivatives are now assembled in a slightly different manner (i.e. they
  'look' different on first sight).  Under certain circumstances this can
  result in a dramatic speedup because it gives hashing a better chance,
  especially when computing higher derivatives.
- Series expansion accepts an additional bool argument now, telling it
  whether branch cuts are to be honored (as Maple does it) or not (as
  Mathematica does it).  It defaults to true (i.e. the Maple way).
- Many series expansions of built-in functions have been reengineered.
- The Dilogarithm (Li2) now has floating point evaluation, derivative and a
  proper series expansion.
- Namespace 'std' cleanly disentangled, as demanded by ISO/EIC 14882-1998(E).
- Some helpers updated from upstream.


Revision 1.21 - (view) (annotate) - [select for diffs]
Fri Apr 28 22:15:55 2000 UTC (13 years ago) by kreckel
Branch: MAIN
CVS Tags: release_0-6-0, release_0-6-1, release_0-6-2
Changes since 1.20: +20 -13 lines
Diff to previous 1.20
- introduced info_flag::algebraic.
- matrix::fraction_free_elimination(bool) finished and used by matrix::determinant().
- introduced some comments.


Revision 1.20 - (view) (annotate) - [select for diffs]
Wed Mar 15 18:22:41 2000 UTC (13 years, 2 months ago) by kreckel
Branch: MAIN
CVS Tags: release_0-5-4
Changes since 1.19: +6 -2 lines
Diff to previous 1.19
- The status_flags::expanded is now used on some occasions.


Revision 1.19 - (view) (annotate) - [select for diffs]
Tue Mar 14 16:39:25 2000 UTC (13 years, 2 months ago) by kreckel
Branch: MAIN
Changes since 1.18: +2 -2 lines
Diff to previous 1.18
- Doxygen'ed a bunch of comments.


Revision 1.18 - (view) (annotate) - [select for diffs]
Mon Mar 13 14:15:05 2000 UTC (13 years, 2 months ago) by kreckel
Branch: MAIN
Changes since 1.17: +14 -14 lines
Diff to previous 1.17
- More drastic performance boost on matrix stuff.
- Addition of some comments.


Revision 1.17 - (view) (annotate) - [select for diffs]
Wed Feb 2 15:50:10 2000 UTC (13 years, 3 months ago) by kreckel
Branch: MAIN
CVS Tags: relase_0-5-0, relase_0-5-1, release_0-5-2, release_0-5-3
Changes since 1.16: +8 -0 lines
Diff to previous 1.16
- diff() is now only defined on classes ex and basic, where it handles
  higher derivatives.  derivative() is now the method to be implemented
  by the user that does single derivatives, it is protected.
- Implemented some very clumpsy automatic generation of ginaccint.
  It is ugly because we have to compile libginac without namespace GiNaC.
- Fixed some wrong logic in numeric::power().


Revision 1.16 - (view) (annotate) - [select for diffs]
Sun Jan 30 20:53:21 2000 UTC (13 years, 3 months ago) by kreckel
Branch: MAIN
Changes since 1.15: +4 -4 lines
Diff to previous 1.15
- Renamed flag NO_GINAC_NAMESPACE to NO_NAMESPACE_GINAC because of m4.
- Made configure check for cint and makecint and call makecint to dump out
  cint/Makefile.cint, which will later be called by cint/Makefile.  See
  configure option --with-cint.
- Added some documentation about GiNaC-cint (e.g. a manpage).
- All dummies in subdir cint/ are created by cint/dummies.pl now, removed
  older stuff.


Revision 1.15 - (view) (annotate) - [select for diffs]
Mon Jan 24 19:09:46 2000 UTC (13 years, 4 months ago) by kreckel
Branch: MAIN
Changes since 1.14: +0 -39 lines
Diff to previous 1.14
- killed old add::print


Revision 1.14 - (view) (annotate) - [select for diffs]
Fri Jan 21 15:20:30 2000 UTC (13 years, 4 months ago) by cbauer
Branch: MAIN
Changes since 1.13: +26 -26 lines
Diff to previous 1.13
- changed all instances of "foo const &/*" to "const foo &/*"
- changed function arguments like "int const" to a simple "int"


Revision 1.13 - (view) (annotate) - [select for diffs]
Wed Jan 19 19:46:56 2000 UTC (13 years, 4 months ago) by cbauer
Branch: MAIN
Changes since 1.12: +31 -6 lines
Diff to previous 1.12
- implemented global class registry (for class basic and derived classes)
- implemented archiving of expressions (except for class idx, and all classes
  derived from idx and indexed)
- added series() wrapper function
- class series renamed to pseries to avoid name clashes with global series()
  wrapper function, ex::series(), and basic::series()
- corrected the series expansion of single symbols with respect to the order
  term
- calling subs() on a series didn't work


Revision 1.12 - (view) (annotate) - [select for diffs]
Tue Jan 11 19:25:05 2000 UTC (13 years, 4 months ago) by kreckel
Branch: MAIN
Changes since 1.11: +1 -1 lines
Diff to previous 1.11
- made nops() return unsigned instead of int
- changed dates in copyright notices


Revision 1.11 - (view) (annotate) - [select for diffs]
Mon Dec 20 17:12:36 1999 UTC (13 years, 5 months ago) by kreckel
Branch: MAIN
Changes since 1.10: +52 -5 lines
Diff to previous 1.10
- more logic on the trigonometric function stuff.
- changed several occurences of numeric const & to const numeric &, which
  is the same, but doxygen kept being confused because declarations
  differed from implementations.


Revision 1.10 - (view) (annotate) - [select for diffs]
Fri Dec 17 16:58:31 1999 UTC (13 years, 5 months ago) by kreckel
Branch: MAIN
Changes since 1.9: +30 -29 lines
Diff to previous 1.9
- Banned exZERO(), exONE(), exMINUSHALF() and all this from the interface.
  There is now _ex1() meaning 1, _ex_1() meaning -1, _ex1_2() meaning 1/2
  and so on defined in utils.h and implemented in utils.cpp.  Feel free
  to extend them as it pleases you but use them inside the library only.
- Added more evaluations of trigonometric functions
- Added series expansions for psi(x) and psi(n,x) at all their poles


Revision 1.9 - (view) (annotate) - [select for diffs]
Mon Dec 13 15:43:32 1999 UTC (13 years, 5 months ago) by kreckel
Branch: MAIN
Changes since 1.8: +102 -2 lines
Diff to previous 1.8
- introduced info_flags::cinteger, info_flags::crational,
  info_flags::cinteger_polynomial, info_flags::crational_polynomial with
  intuitive behaviour.
- extended documentation
- made things like evlaf(zeta(3)) work
- killed several bugs


Revision 1.8 - (view) (annotate) - [select for diffs]
Fri Dec 10 17:23:57 1999 UTC (13 years, 5 months ago) by kreckel
Branch: MAIN
Changes since 1.7: +0 -234 lines
Diff to previous 1.7
- changed behaviour of numeric::is_rational() and added numeric::is_cinteger()
  and numeric::is_crational() which work for complex numbers now
- added default ctor for constant to please CInt
- documentation reflects the changes for upcoming 0.4.1


Revision 1.7 - (view) (annotate) - [select for diffs]
Thu Dec 2 15:45:13 1999 UTC (13 years, 5 months ago) by frink
Branch: MAIN
Changes since 1.6: +4 -0 lines
Diff to previous 1.6
#ifndef around namespace GiNaC { }


Revision 1.6 - (view) (annotate) - [select for diffs]
Mon Nov 22 16:44:58 1999 UTC (13 years, 6 months ago) by cbauer
Branch: MAIN
Changes since 1.5: +28 -28 lines
Diff to previous 1.5
- ASSERT macro renamed to GINAC_ASSERT


Revision 1.5 - (view) (annotate) - [select for diffs]
Wed Nov 17 16:57:58 1999 UTC (13 years, 6 months ago) by cbauer
Branch: MAIN
Changes since 1.4: +7 -5 lines
Diff to previous 1.4
- put everything in "GiNaC" namespace
- converted some macros into inline functions
- split debugmsg.h into assertion.h (public) and debugmsg.h (private)


Revision 1.4 - (view) (annotate) - [select for diffs]
Tue Nov 16 16:35:24 1999 UTC (13 years, 6 months ago) by cbauer
Branch: MAIN
Changes since 1.3: +3 -2 lines
Diff to previous 1.3
- modified the comment blocks so the copyright message no longer appears in
  the reference manual (made by Doxygen)


Revision 1.3 - (view) (annotate) - [select for diffs]
Wed Nov 10 19:35:47 1999 UTC (13 years, 6 months ago) by cbauer
Branch: MAIN
Changes since 1.2: +9 -8 lines
Diff to previous 1.2
- modified GiNaC headers to Alexander's liking


Revision 1.2 - (view) (annotate) - [select for diffs]
Wed Nov 10 16:35:10 1999 UTC (13 years, 6 months ago) by cbauer
Branch: MAIN
Changes since 1.1: +18 -1 lines
Diff to previous 1.1
- enforced GiNaC coding standards :-)


Revision 1.1 - (view) (annotate) - [select for diffs]
Tue Nov 9 19:57:00 1999 UTC (13 years, 6 months ago) by cbauer
Branch: MAIN
- switched to automake build environment


This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

Christian Bauer">Christian Bauer
ViewVC Help
Powered by ViewVC 1.1.15