X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Ftensor.h;h=3fae6b425a87d768b72cfc7053b5efdc7a6d0154;hp=d3b27b6074c665fa4d4b82d1d59b7bacbc4fb2f8;hb=2466c49d0c63f82a1b3a50a8b9d111d6b827aa41;hpb=d448856f20cb58f939ddbf636e7f72e3599b1468 diff --git a/ginac/tensor.h b/ginac/tensor.h index d3b27b60..3fae6b42 100644 --- a/ginac/tensor.h +++ b/ginac/tensor.h @@ -3,7 +3,7 @@ * Interface to GiNaC's special tensors. */ /* - * GiNaC Copyright (C) 1999-2001 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2002 Johannes Gutenberg University Mainz, Germany * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -37,11 +37,18 @@ class tensor : public basic // other constructors protected: - tensor(unsigned ti); + tensor(unsigned ti) : inherited(ti) {} // functions overriding virtual functions from base classes protected: unsigned return_type(void) const { return return_types::noncommutative_composite; } + + // non-virtual functions in this class +public: + /** Replace dummy index in contracted-with object by the contracting + * object's second index (used internally for delta and metric tensor + * contractions. */ + bool replace_contr_index(exvector::iterator self, exvector::iterator other) const; }; @@ -206,18 +213,6 @@ ex epsilon_tensor(const ex & i1, const ex & i2, const ex & i3); * @return newly constructed epsilon tensor */ ex lorentz_eps(const ex & i1, const ex & i2, const ex & i3, const ex & i4, bool pos_sig = false); -/** Create an epsilon tensor in a 4-dimensional projection of a D-dimensional - * Minkowski space. It vanishes whenever one of the indices is not in the - * set {0, 1, 2, 3}. - * - * @param i1 First index - * @param i2 Second index - * @param i3 Third index - * @param i4 Fourth index - * @param pos_sig Whether the signature of the metric is positive - * @return newly constructed epsilon tensor */ -ex eps0123(const ex & i1, const ex & i2, const ex & i3, const ex & i4, bool pos_sig = false); - } // namespace GiNaC #endif // ndef __GINAC_TENSOR_H__