X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Ftensor.h;h=446ede8653e467adb35f147ef6d53a329aae18bb;hp=712ec7e131539ce8aaf3c92e815f52486521d1a0;hb=488cad4c124885230154720041bd51fa4d983a8b;hpb=1ed8f877ea0ca066c276d5bea08f2e775559aa81 diff --git a/ginac/tensor.h b/ginac/tensor.h index 712ec7e1..446ede86 100644 --- a/ginac/tensor.h +++ b/ginac/tensor.h @@ -60,9 +60,13 @@ class tensdelta : public tensor // functions overriding virtual functions from base classes public: - void print(const print_context & c, unsigned level = 0) const; ex eval_indexed(const basic & i) const; bool contract_with(exvector::iterator self, exvector::iterator other, exvector & v) const; + + // non-virtual functions in this class +protected: + void do_print(const print_context & c, unsigned level) const; + void do_print_latex(const print_latex & c, unsigned level) const; }; @@ -75,9 +79,12 @@ class tensmetric : public tensor // functions overriding virtual functions from base classes public: - void print(const print_context & c, unsigned level = 0) const; ex eval_indexed(const basic & i) const; bool contract_with(exvector::iterator self, exvector::iterator other, exvector & v) const; + + // non-virtual functions in this class +protected: + void do_print(const print_context & c, unsigned level) const; }; @@ -95,9 +102,13 @@ public: // functions overriding virtual functions from base classes public: - void print(const print_context & c, unsigned level = 0) const; ex eval_indexed(const basic & i) const; + // non-virtual functions in this class +protected: + void do_print(const print_context & c, unsigned level) const; + void do_print_latex(const print_latex & c, unsigned level) const; + // member variables private: bool pos_sig; /**< If true, the metric is diag(-1,1,1...). Otherwise it is diag(1,-1,-1,...). */ @@ -114,9 +125,13 @@ class spinmetric : public tensmetric // functions overriding virtual functions from base classes public: - void print(const print_context & c, unsigned level = 0) const; ex eval_indexed(const basic & i) const; bool contract_with(exvector::iterator self, exvector::iterator other, exvector & v) const; + + // non-virtual functions in this class +protected: + void do_print(const print_context & c, unsigned level) const; + void do_print_latex(const print_latex & c, unsigned level) const; }; @@ -133,10 +148,14 @@ public: // functions overriding virtual functions from base classes public: - void print(const print_context & c, unsigned level = 0) const; ex eval_indexed(const basic & i) const; bool contract_with(exvector::iterator self, exvector::iterator other, exvector & v) const; + // non-virtual functions in this class +protected: + void do_print(const print_context & c, unsigned level) const; + void do_print_latex(const print_latex & c, unsigned level) const; + // member variables private: bool minkowski; /**< If true, tensor is in Minkowski-type space. Otherwise it is in a Euclidean space. */