/[GiNaC]/ginac/clifford.h
ViewVC logotype

Log of /ginac/clifford.h

Parent Directory Parent Directory | Revision Log Revision Log


Links to HEAD: (view) (annotate)
Links to release_0-8-2: (view) (annotate)
Sticky Tag:

Revision 1.26 - (view) (annotate) - [select for diffs]
Tue Apr 24 13:22:09 2001 UTC (12 years, 1 month ago) by cbauer
Branch: MAIN
CVS Tags: release_0-8-2
Changes since 1.25: +10 -0 lines
Diff to previous 1.25
- added get_representation_label()
- clifford contractions honor repr. label
- first implementation of dirac_trace(), works with 0..3 clifford objects


Revision 1.25 - (view) (annotate) - [select for diffs]
Fri Apr 20 19:06:55 2001 UTC (12 years, 2 months ago) by cbauer
Branch: MAIN
Changes since 1.24: +33 -8 lines
Diff to previous 1.24
- color/clifford objects have representation label to distinguish elements
  of different algebras; objects with different labels commute with each
  other
- dirac_one() -> dirac_ONE()
- added gamma5 clifford objects which is constructed by dirac_gamma5()
- clifford::simplify_ncmul() anticommutes gamma5's to the front and removes
  squares of gamma5
- the argument to collect() can be a list of objects in which case the
  result is either a recursively collected polynomial, or a polynomial in
  a distributed form with terms like coeff*x1^e1*...*xn^en, as specified by
  the second argument to collect(). For example (ginsh):
    > f=a*x-x+a*x*y+x*y+a*x*y^2-2*x*y^2+y^2;
    a*x+y*a*x+y^2*a*x+y^2-x+y*x-2*y^2*x
    > collect(f,x);
    (-1+y+y^2*a+y*a+a-2*y^2)*x+y^2
    > collect(f,y);
    a*x-x+y^2*(1+a*x-2*x)+y*(a*x+x)
    > collect(f,[x,y]);
    (-1+y*(1+a)+y^2*(-2+a)+a)*x+y^2
    > collect(f,[y,x]);
    (-1+a)*x+y*(1+a)*x+(1+(-2+a)*x)*y^2
    > collect_distributed(f,[x,y]);
    (-1+a)*x+y^2*(-2+a)*x+y*(1+a)*x+y^2


Revision 1.24 - (view) (annotate) - [select for diffs]
Fri Apr 6 19:02:58 2001 UTC (12 years, 2 months ago) by cbauer
Branch: MAIN
CVS Tags: release_0-8-1
Changes since 1.23: +2 -2 lines
Diff to previous 1.23
- 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.23 - (view) (annotate) - [select for diffs]
Thu Mar 29 16:56:32 2001 UTC (12 years, 2 months ago) by cbauer
Branch: MAIN
Changes since 1.22: +18 -0 lines
Diff to previous 1.22
- added Clifford algebra unity element
- superfluous unity elements are removed from Clifford and color strings
- added Clifford contractions:
    gamma~mu*gamma.mu
    gamma~mu*gamma~alpha*gamma.mu
- added color contractions:
    d.aac
    d.abc*d.abc
    d.akl*d.bkl
    d.abc*f.abc
    d.akl*f.bkl
    f.abc*f.abc
    f.akl*f.bkl
- delta tensor and color structure constants can be evaluated numerically
- color_T(), color_d() and color_f() check their arguments
- added a couple of utility functions to idx.*
- simplify_indexed() doesn't crash any more when used on expressions containing
  noncommutative products


Revision 1.22 - (view) (annotate) - [select for diffs]
Tue Mar 27 21:21:43 2001 UTC (12 years, 2 months ago) by cbauer
Branch: MAIN
Changes since 1.21: +30 -28 lines
Diff to previous 1.21
restored deleted files


Revision 1.21
Tue Mar 6 17:05:28 2001 UTC (12 years, 3 months ago) by cbauer
Branch: MAIN
Changes since 1.20: +0 -0 lines
FILE REMOVED
removed obsolete files


Revision 1.20 - (view) (annotate) - [select for diffs]
Wed Feb 28 12:54:52 2001 UTC (12 years, 3 months ago) by kreckel
Branch: MAIN
CVS Tags: release_0-7-3
Changes since 1.19: +0 -4 lines
Diff to previous 1.19
* 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.19 - (view) (annotate) - [select for diffs]
Fri Feb 16 17:25:47 2001 UTC (12 years, 4 months ago) by cbauer
Branch: MAIN
CVS Tags: release_0-7-2
Changes since 1.18: +0 -2 lines
Diff to previous 1.18
GINAC_DECLARE_REGISTERED_CLASS declares duplicate() and compare_same_type(),
GINAC_IMPLEMENT_REGISTERED_CLASS implements duplicate()


Revision 1.18 - (view) (annotate) - [select for diffs]
Thu Feb 15 19:54:52 2001 UTC (12 years, 4 months ago) by cbauer
Branch: MAIN
Changes since 1.17: +0 -12 lines
Diff to previous 1.17
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.17 - (view) (annotate) - [select for diffs]
Wed Feb 14 16:04:18 2001 UTC (12 years, 4 months ago) by cbauer
Branch: MAIN
Changes since 1.16: +0 -5 lines
Diff to previous 1.16
removed the "some_*" and "typeid_*" definitions since we are using our own
RTTI for quite some time now


Revision 1.16 - (view) (annotate) - [select for diffs]
Wed Feb 14 15:42:20 2001 UTC (12 years, 4 months ago) by cbauer
Branch: MAIN
Changes since 1.15: +2 -0 lines
Diff to previous 1.15
added missing thisexprseq() to clifford class


Revision 1.15 - (view) (annotate) - [select for diffs]
Tue Feb 13 21:50:46 2001 UTC (12 years, 4 months ago) by cbauer
Branch: MAIN
Changes since 1.14: +23 -19 lines
Diff to previous 1.14
- added documentation to the indexed, color, lortensor and clifford classes
- moved Dim() function from lortensor.cpp to lorentzidx.cpp
- moved append_exvector_to_exvector() from color.cpp to utils.cpp
- some cleanups in the lortensor and clifford classes


Revision 1.14 - (view) (annotate) - [select for diffs]
Mon Jan 22 15:12:08 2001 UTC (12 years, 4 months ago) by kreckel
Branch: MAIN
CVS Tags: release_0-7-1
Changes since 1.13: +1 -1 lines
Diff to previous 1.13
- 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.13 - (view) (annotate) - [select for diffs]
Mon Aug 14 12:21:06 2000 UTC (12 years, 10 months ago) by kreckel
Branch: MAIN
CVS Tags: release_0-7-0
Changes since 1.12: +1 -1 lines
Diff to previous 1.12
- Inserted some more std:: to make it compile under GCC2.96.


Revision 1.12 - (view) (annotate) - [select for diffs]
Fri Aug 11 15:07:15 2000 UTC (12 years, 10 months ago) by cbauer
Branch: MAIN
Changes since 1.11: +28 -28 lines
Diff to previous 1.11
- 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.11 - (view) (annotate) - [select for diffs]
Thu Jul 20 21:12:41 2000 UTC (12 years, 11 months ago) by kreckel
Branch: MAIN
CVS Tags: release_0-6-3, release_0-6-4
Changes since 1.10: +8 -8 lines
Diff to previous 1.10
- 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.10 - (view) (annotate) - [select for diffs]
Sun Jan 30 20:53:21 2000 UTC (13 years, 4 months ago) by kreckel
Branch: MAIN
CVS Tags: relase_0-5-0, relase_0-5-1, release_0-5-2, release_0-5-3, release_0-5-4, release_0-6-0, release_0-6-1, release_0-6-2
Changes since 1.9: +4 -4 lines
Diff to previous 1.9
- 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.9 - (view) (annotate) - [select for diffs]
Thu Jan 27 15:26:13 2000 UTC (13 years, 4 months ago) by cbauer
Branch: MAIN
Changes since 1.8: +2 -2 lines
Diff to previous 1.8
- building GiNaC in a separate directory now works


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


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


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


Revision 1.5 - (view) (annotate) - [select for diffs]
Wed Nov 17 16:57:58 1999 UTC (13 years, 7 months ago) by cbauer
Branch: MAIN
Changes since 1.4: +9 -4 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, 7 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, 7 months ago) by cbauer
Branch: MAIN
Changes since 1.2: +1 -0 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, 7 months ago) by cbauer
Branch: MAIN
Changes since 1.1: +21 -8 lines
Diff to previous 1.1
- enforced GiNaC coding standards :-)


Revision 1.1 - (view) (annotate) - [select for diffs]
Tue Nov 9 19:57:01 1999 UTC (13 years, 7 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